blob: 27622070f2ccea24ded614d7c1d4ef30a8fdb794 (
plain)
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
44
45
46
47
48
49
|
<div class="vvbox settings info" id="builderInfo">
<h4>Map Editor</h4>
<div class="no-selection">
Click and drag to make a new room.
Click a room to select, move or resize it.
<br><br>
Press ESC to toggle the map.
</div>
<div class="setting number">
<label for="room-width">width</label>
<input type="text" class="units" name="width" id="room-width">
</div>
<div class="setting number">
<label for="room-depth">depth</label>
<input type="text" class="units" name="depth" id="room-depth">
</div>
<div class="setting number twoline">
<label for="room-height">ceiling height</label>
<input type="text" class="units" name="height" id="room-height">
</div>
<div class="setting number halflines">
<label for="room-x">x</label>
<input type="text" class="units" name="x" id="room-x">
<label for="room-y">y</label>
<input type="text" class="units" name="y" id="room-y">
</div>
<div class="setting number twoline">
<label for="builder-units">units</label>
<select id="builder-units" name="units">
<option value="px">pixels</option>
<option value="ft">foot</option>
<option value="m">meter</option>
</select>
</div>
<div class="setting number twoline">
<label for="viewHeight">camera height</label>
<input type="text" class="units" name="viewHeight" id="viewHeight">
</div>
<div class="setting">
<a href="#" class="warn btn" data-role="destroy-room">remove this room</a>
</div>
</div>
|