-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.27 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pixel Draw Renderer</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<div id="draw-panel">
<div id="toolbar">
<div class="toolbar-item">
<button class="mode-btn" id="mode-paint">Paint</button>
<button class="mode-btn" id="mode-move">Move</button>
<button class="mode-btn" id="mode-uv">UV</button>
</div>
<div id="paint-controls" class="toolbar-item-group">
<div class="toolbar-item">
<button id="color-swatch" title="Color"></button>
</div>
<label class="toolbar-item">
Size
<input type="range" id="brush-size" min="1" max="32" value="1">
<span id="brush-size-display">1px</span>
</label>
</div>
</div>
</div>
<div id="canvas-container">
<canvas tabindex="-1" id="three-canvas"></canvas>
<aside id="uv-panel">
<div class="uv-panel-header">UV Regions</div>
<div id="uv-face-list"></div>
<div id="uv-coords"></div>
<p class="uv-hint">Drag to reposition · Del to delete</p>
</aside>
</div>
<script type="module" src="./scripts/main.ts"></script>
</body>
</html>