-
Notifications
You must be signed in to change notification settings - Fork 318
/
index.html
48 lines (43 loc) · 1.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>DragonBones Demo</title>
<script src="./libs/pixi/pixi.js"></script>
<script src="./libs/dragonBones/dragonBones.js"></script>
<script src="./out/DragHelper.js"></script>
<script src="./out/BaseDemo.js"></script>
<script src="./out/HelloDragonBones.js"></script>
<script src="./out/AnimationBase.js"></script>
<script src="./out/DragonBonesEvent.js"></script>
<script src="./out/AnimationLayer.js"></script>
<script src="./out/BoneOffset.js"></script>
<script src="./out/InverseKinematics.js"></script>
<script src="./out/BoundingBox.js"></script>
<script src="./out/MultiTextureAltas.js"></script>
<script src="./out/ReplaceSlotDisplay.js"></script>
<script src="./out/ReplaceSkin.js"></script>
<script src="./out/ReplaceAnimation.js"></script>
<script src="./out/CoreElement.js"></script>
<script src="./out/EyeTracking.js"></script>
<script src="./out/PerformanceTest.js"></script>
</head>
<body>
<script>
// new HelloDragonBones();
// new AnimationBase();
// new DragonBonesEvent();
// new AnimationLayer();
// new BoneOffset();
// new InverseKinematics();
// new BoundingBox();
// new MultiTextureAltas();
// new ReplaceSlotDisplay();
// new ReplaceSkin();
// new ReplaceAnimation();
// new coreElement.Game();
new EyeTracking();
// new PerformanceTest();
</script>
</body>
</html>