-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
34 lines (34 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="index.css">
<script src="three.min.js"></script>
<title>Minetest Node Box Creator</title>
</head>
<body>
<div class="container" id="main">
<div class="sidebar">
<button id="new_cube">New Cube</button>
<div class="divider"></div>
<span class="section_title">Cubes</span>
<div class="list" id="cubes"></div>
<div class="divider"></div>
<span class="section_title">Textures</span>
<div class="list" id="tiles">
<div class="tile_file" id="top"><span class="designation">Top (+Y)</span></div>
<div class="tile_file" id="bottom"><span class="designation">Bottom (-Y)</span></div>
<div class="tile_file" id="right"><span class="designation">Right (+X)</span></div>
<div class="tile_file" id="left"><span class="designation">Left (-X)</span></div>
<div class="tile_file" id="back"><span class="designation">Back (+Z)</span></div>
<div class="tile_file" id="front"><span class="designation">Front (-Z)</span></div>
<div class="tile_file" id="all"><span class="designation">Set Default for all sides</span></div>
</div>
<div class="divider"></div>
<button id="export">Export Node Box</button>
<pre><code id="exported">Press export and the code will appear here!</code></pre>
</div>
</div>
<script src="index.js"></script>
</body>
</html>