Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them has been replaced with a symlink. Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still be present.
46 lines
2.6 KiB
HTML
46 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
|
|
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
function buttonHandlerMaker(buttonName) {
|
|
return function (msg) {
|
|
EventBridge.emitWebEvent(buttonName);
|
|
};
|
|
}
|
|
var buttons = ["#button-mesh", "#button-anim", "#button-iktarg", "#button-pos",
|
|
"#button-ikconst", "#button-ikchain", "#button-dpose", "#button-1person",
|
|
"#button-3person", "#button-mirror", "#button-lean-recenter",
|
|
"#button-detailed-collision", "#button-avatar-collision",
|
|
"#button-double-scale", "#button-half-scale", "#button-unit-scale"];
|
|
buttons.forEach(function (buttonName) {
|
|
$(buttonName).click(buttonHandlerMaker(buttonName));
|
|
});
|
|
});
|
|
</script>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<body>
|
|
<div style="margin:10px">
|
|
<button id="button-mesh" class="ui-btn ui-corner-all">Draw Mesh</button>
|
|
<button id="button-anim" class="ui-btn ui-corner-all">Draw Animation</button>
|
|
<button id="button-iktarg" class="ui-btn ui-corner-all">Draw IK Targets</button>
|
|
<button id="button-pos" class="ui-btn ui-corner-all">Draw Position</button>
|
|
<button id="button-ikconst" class="ui-btn ui-corner-all">Draw IK Constraints</button>
|
|
<button id="button-ikchain" class="ui-btn ui-corner-all">Draw IK Chains</button>
|
|
<button id="button-dpose" class="ui-btn ui-corner-all">Draw Default Pose</button>
|
|
<button id="button-1person" class="ui-btn ui-corner-all">First Person</button>
|
|
<button id="button-3person" class="ui-btn ui-corner-all">Third Person</button>
|
|
<button id="button-mirror" class="ui-btn ui-corner-all">Mirror</button>
|
|
<button id="button-lean-recenter" class="ui-btn ui-corner-all">Lean Recenter</button>
|
|
<button id="button-detailed-collision" class="ui-btn ui-corner-all">Detailed Collision</button>
|
|
<button id="button-avatar-collision" class="ui-btn ui-corner-all">Avatar Collision</button>
|
|
<button id="button-double-scale" class="ui-btn ui-corner-all">Double Scale</button>
|
|
<button id="button-half-scale" class="ui-btn ui-corner-all">Half Scale</button>
|
|
<button id="button-unit-scale" class="ui-btn ui-corner-all">Unit Scale</button>
|
|
</div>
|
|
</body>
|
|
</head>
|
|
</html>
|