forked from takahirox/aframe-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (54 loc) · 2.19 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
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A-Frame WebRTC component</title>
<meta name="description" content="A-Frame WebRTC component">
<script>
/*
var WebVRConfig = {
FORCE_ENABLE_VR: true,
BUFFER_SCALE: 1.0
};
*/
</script>
<script src="https://cdn.rawgit.com/aframevr/aframe/v0.5.0/dist/aframe-master.min.js"></script>
<script src="https://cdn.rawgit.com/kripken/ammo.js/dcab07bf0e7f2b4b64c01dc45da846344c8f50be/builds/ammo.js"></script>
<script src="https://cdn.rawgit.com/donmccurdy/aframe-extras/v3.2.0/dist/aframe-extras.min.js"></script>
<script src="https://cdn.rawgit.com/takahirox/aframe-outline/v1.1.0/build/aframe-outline.min.js"></script>
<script src="https://cdn.rawgit.com/takahirox/a-mmd/v1.0.2/build/a-mmd.min.js"></script>
<script src="./build/aframe-webrtc.js"></script>
</head>
<body>
<a-scene outline webrtc="room:5555" antialias="true">
<a-assets>
<img id="sky" src="https://cdn.rawgit.com/aframevr/aframe/master/examples/primitives/models/peach-gradient.jpg">
</a-assets>
<a-entity position="0 10 0">
<a-camera webrtc-sender></a-camera>
</a-entity>
<a-entity webrtc-receiver
mmd-model="model:https://cdn.rawgit.com/mrdoob/three.js/dev/examples/models/mmd/miku/miku_v2.pmd;
physics:true;"
shadow="cast:true"
position="0 0 0"></a-entity>
</a-entity>
<a-plane rotation="-90 0 0"
color="#AAAAAA"
height="200"
width="200"
shadow="receive:true"></a-plane>
<a-sky src="#sky"></a-sky>
<a-entity shadow-light="type:directional;
castShadow:true;
color:#888;
shadowMapWidth:1024;
shadowMapHeight:1024;
shadowCameraRight:20;
shadowCameraTop:20;
shadowCameraLeft:-20;
shadowCameraBottom:-20"
position="-20 20 20"></a-entity>
</a-scene>
</body>
</html>