mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
npm install will automatically build everything necessary for local development and viewing the examples.
21 lines
560 B
HTML
21 lines
560 B
HTML
<html>
|
|
<meta charset="UTF-8">
|
|
<title>IK Constraints - Spine Demo</title>
|
|
<link rel="stylesheet" href="demos.css">
|
|
<script src="../dist/iife/spine-webgl.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
|
|
<script src="utils.js"></script>
|
|
<script src="additiveblending.js"></script>
|
|
|
|
<body style="margin: 0; padding: 0;">
|
|
|
|
<div style="margin: 0 auto;" class="aspect standalone"></div>
|
|
|
|
<script>
|
|
spineDemos.init();
|
|
spineDemos.addDemo(additiveBlendingDemo, document.getElementsByClassName("aspect")[0]);
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html> |