-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 965 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>kernelpop - VR</title>
<script src="https://aframe.io/releases/0.5.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<img id="boxTexture" src="https://i.imgur.com/mYmmbrp.jpg">
<img id="skyTexture"
src="https://cdn.aframe.io/360-image-gallery-boilerplate/img/sechelt.jpg">
<img id="groundTexture" src="https://cdn.aframe.io/a-painter/images/floor.jpg">
</a-assets>
<a-sky src="#skyTexture"></a-sky>
<a-plane src = "grass.jpg" color = "green" position="0 0 0" rotation="-90 0 0" width="3000" height="3000" repeat="1000 1000"></a-plane>
<a-light type="point" intensity="2 4 -10" position="2 4 4"></a-light>
<a-box color = "grey" position="0 1 -10" rotation="0 30 0" scale="2 10 2"></a-box>
<a-text value="Virtual Co." color="black" position="-0.3 5.65 -8.672" rotation="0 30 0" scale="1.1 1.1 1.1"></a-text>
</a-scene>
</body>
</html>