-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
26 lines (23 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A-Frame Instancing component</title>
<meta name="description" content="A-Frame Instancing component">
<script src="https://cdn.rawgit.com/aframevr/aframe/v1.0.4/dist/aframe-master.min.js"></script>
<script src="./build/aframe-instancing.min.js"></script>
</head>
<body>
<a-scene stats>
<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 0 1000">
<a-camera></a-camera>
</a-entity>
<a-entity instancing="count:40000; frustumCulled: false;"></a-entity>
<a-sky src="#sky" scale="10 10 10"></a-sky>
<a-entity light="type:directional;color:#FFFFFF" position="-1 1 1"></a-entity>
</a-scene>
</body>
</html>