-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamepad-control-zero.html
79 lines (73 loc) · 4.05 KB
/
gamepad-control-zero.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
<script src="https://unpkg.com/aframe-animation-component@3.2.1/dist/aframe-animation-component.min.js"></script>
<script src="https://unpkg.com/aframe-particle-system-component@1.0.x/dist/aframe-particle-system-component.min.js"></script>
<script src="https://unpkg.com/aframe-extras.ocean@%5E3.5.x/dist/aframe-extras.ocean.min.js"></script>
<script src="https://unpkg.com/aframe-gradient-sky@1.0.4/dist/gradientsky.min.js"></script>
<script src="https://unpkg.com/aframe-environment-component@1.1.0/dist/aframe-environment-component.min.js"></script>
<script src="https://unpkg.com/super-hands/dist/super-hands.min.js"></script>
<script src="https://cdn.rawgit.com/donmccurdy/aframe-physics-system/v3.1.2/dist/aframe-physics-system.min.js"></script>
<script src="https://unpkg.com/aframe-event-set-component@^4.1.1/dist/aframe-event-set-component.min.js"></script>
<script src="https://unpkg.com/aframe-physics-extras/dist/aframe-physics-extras.min.js"></script>
<script src="https://rawgit.com/feiss/aframe-environment-component/master/dist/aframe-environment-component.min.js"></script>
<script src="https://unpkg.com/aframe-ground-component@0.0.4/dist/aframe-ground-component.min.js"></script>
<script src="https://unpkg.com/aframe-snapto-component/dist/aframe-snapto-component.js"></script>
<!--controls auto-detect mouse hand touch thumb gamepad-->
<script src="https://unpkg.com/aframe-thumb-controls-component@1.1.0/dist/aframe-thumb-controls-component.min.js"></script>
<script src="https://unpkg.com/aframe-orbit-controls@1.2.0/dist/aframe-orbit-controls.min.js"></script>
<script src="https://unpkg.com/aframe-supercraft-loader@1.1.3/dist/aframe-supercraft-loader.js"></script>
<script src="https://rawgit.com/chenzlabs/auto-detect-controllers/master/dist/aframe-auto-detect-controllers-component.min.js"></script>
<script src="https://rawgit.com/chenzlabs/gearvr-controls/master/dist/aframe-gearvr-controls-component.min.js"></script>
<!--constrain-->
<script src="aframe-ammo-constraints.js"></script>
<script src="aframe-curve-component.js"></script>
<script src="aframe-curve-component.min.js"></script>
<script src="aframe-slideshow-component.js"></script>
<script src="aframe-slideshow-component.min.js"></script>
<script src="aframe-web-gui-component.js"></script>
<script src="click-impulse'.js"></script>
<script src="createConstraint-component.js"></script>
<script src="datguivr-aframe.js"></script>
<script src="edit.js"></script>
<script src="index.js"></script>
<script src="matrix.js"></script>
<script src="noNetwork-super-spawner.js"></script>
<script src="superHandsExtra.js"></script>
<script src="webvrhelper.min.js"></script>
<!--movement-->
<script src="grab.js"></script>
<script src="grab.min.js"></script>
<script src="sphere-collider.js"></script>
<script src="sphere-collider.min.js"></script>
<!--grabbable-->
<script src="clickable.js"></script>
<script src="draggable.js"></script>
<script src="drag-droppable.js"></script>
<script src="hoverable.js"></script>
<script src="stretchable.js"></script>
<script src="droppable.js"></script>
<script src="grabbable.js"></script>
<!--ui-->
<script src="aframe-extras.loaders.min.js"></script>
<script src="aframe-extras.controls.min.js"></script>
<script src="aframe-extras.misc.min.js"></script>
<script src="aframe-extras.primitives.min.js"></script>
<!--onclick-->
<script>
</script>
<!--mouse capture-->
<script>
</script>
</head>
<body>
<a-scene ground="preset: contact; ground: flat; dressingAmount: 0">
<a-sky id="bluesky" color="lightblue"></a-sky>
<!-- ... -->
<a-entity position="0 0 5">
<a-camera extras.controls look-controls wasd-controls></a-camera>
</a-entity>
</a-scene>
</body>
</html>