forked from enable3d/enable3d-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtual-reality.html
More file actions
87 lines (73 loc) · 2.85 KB
/
virtual-reality.html
File metadata and controls
87 lines (73 loc) · 2.85 KB
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
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Virtual Reality</title>
<link rel="stylesheet" href="/css/examples.css?ver=1.0.0" />
<script src="/js/examples.js?ver=1.1.1"></script>
<script src="/lib/enable3d/enable3d.framework.0.23.0.min.js"></script>
</head>
<body>
<div id="info-text">Get your Phone, click Enter VR, tab on the screen and look around.</div>
<script>
const { Project, Scene3D, PhysicsLoader, THREE } = ENABLE3D
class MainScene extends Scene3D {
move = false
constructor() {
super({ enableXR: true })
}
update() {
if (this.webXR.isPresenting && this.move) {
// move in the direction of the view
const cam = this.webXR.camera
const v3 = new THREE.Vector3()
const distance = 0.02
cam.getWorldDirection(v3)
cam.position.add(v3.multiplyScalar(distance))
}
}
async create() {
this.warpSpeed('-orbitControls')
this.camera.position.set(10, 10, 10)
this.camera.lookAt(0, 0, 0)
setInterval(() => {
const x = Math.random() * 10 - 5
const z = Math.random() * 10 - 5
const ball = this.physics.add.sphere({ y: 50, x, z, radius: 0.5 }, { lambert: { color: 'red' } })
ball.body.setBounciness(0.7)
setTimeout(() => {
this.destroy(ball)
}, 20000)
}, 2000)
const onSelectStart = () => {
this.move = true
}
const onSelectEnd = () => {
this.move = false
}
const controller = this.webXR.getController(0)
const controllerGrip = this.webXR.getControllerGrip ? this.webXR.getControllerGrip(0) : null
controller.addEventListener('select', () => {})
controller.addEventListener('selectstart', onSelectStart)
controller.addEventListener('selectend', onSelectEnd)
controller.addEventListener('squeeze', () => {})
controller.addEventListener('squeezestart', onSelectStart)
controller.addEventListener('squeezeend', onSelectEnd)
controller.addEventListener('connected', event => {
const ray = this.webXR.getControllerRay(event.data)
if (ray) controller.add(ray)
})
controller.addEventListener('disconnected', () => {
controller.remove(controller.children[0])
})
}
}
PhysicsLoader('/lib/ammo/kripken', () => new Project({ scenes: [MainScene], antialias: true }))
</script>
</body>
</html>