-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (19 loc) · 922 Bytes
/
index.html
File metadata and controls
23 lines (19 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aframe</title>
<meta name="description" content="Hello, World! • A-Frame">
<script src="https://aframe.io/releases/latest/aframe.min.js"></script>
</head>
<body>
<a-scene>
<!-- <a-camera wasd-controls-enabled="true"></a-camera> -->
<!-- <a-light type="point"></a-light> -->
<a-cube metalness="1" position="0 0 -10" color="red"></a-cube>
<a-cube position="0 0 -50" color="red"></a-cube>
<a-entity position="0 0 0" geometry="primitive: box" material="src: url(http://4.bp.blogspot.com/-5wBEWB9bols/T6AuPeLp8SI/AAAAAAAABOw/OcDeiS3WRt8/s1600/minecraft_sand.jpg)"></a-entity>
<a-entity position="2 0 0"geometry="primitive: box" material="src: url(http://4.bp.blogspot.com/-5wBEWB9bols/T6AuPeLp8SI/AAAAAAAABOw/OcDeiS3WRt8/s1600/minecraft_sand.jpg)"></a-entity>
</a-scene>
</body>
</html>