forked from jaammees/lvllvl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexportSpritePng.html
More file actions
85 lines (69 loc) · 2.9 KB
/
exportSpritePng.html
File metadata and controls
85 lines (69 loc) · 2.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<div class="panelFill" id="exportSpritePngPanel">
<div style="position: absolute; top: 0; left: 0; bottom: 0; right: 0px; padding: 10px; overflow: auto">
<div class="formGroup" class="">
<label class="controlLabel" for="exportSpritePNGAs">File name:</label>
<input type="text" class="formControl" size="20" value="" id="exportSpritePNGAs"/>
</div>
<div class="formGroup" class="exportSpriteFileHolder">
<label class="controlLabel" for="exportSpritePNGAs">File path:</label>
<input type="text" class="formControl" size="20" value="" id="exportSpritePNGAsFile"/>
<div class="ui-button" id="exportSpritePNGAsFileBrowse">Browse...</div>
</div>
<div class="formGroup" style="display: none">
<label class="controlLabel">Scale:</label>
<div class="radioGroup" style="margin-top: 6px">
<label class="rb-container">100%
<input type="radio" name="exportSpritePNGScale" id="exportSpritePNGScale1" value="1" checked="checked"/>
<span class="checkmark"></span>
</label>
<label class="rb-container">200%
<input type="radio" name="exportSpritePNGScale" id="exportSpritePNGScale2" value="2"/>
<span class="checkmark"></span>
</label>
<label class="rb-container">300%
<input type="radio" name="exportSpritePNGScale" id="exportSpritePNGScale3" value="3"/>
<span class="checkmark"></span>
</label>
<label class="rb-container">400%
<input type="radio" name="exportSpritePNGScale" id="exportSpritePNGScale3" value="4"/>
<span class="checkmark"></span>
</label>
</div>
</div>
<div class="formGroup" style="display: none">
<label class="controlLabel"> </label>
<label class="cb-container">Add Transparent Pixel
<input type="checkbox" id="exportSpritePNGTransparentPixel" value="1"/>
<span class="checkmark"></span>
</label>
</div>
<!--
<div class="formGroup">
<label class="controlLabel">Include Layers:</label>
<div class="radioGroup">
<div>
<label class="rb-container">Current Layer Only
<input type="radio" name="exportPNGLayer" id="exportPNGLayerCurrent" value="current"/>
<span class="checkmark"></span>
</label>
</div>
<div>
<label class="rb-container">Visible Layers
<input type="radio" name="exportPNGLayer" id="exportPNGLayerVisible" value="visible" checked="checked"/>
<span class="checkmark"></span>
</label>
</div>
<div>
<label class="rb-container">All Layers
<input type="radio" name="exportPNGLayer" id="exportPNGLayerAll" value="all" />
<span class="checkmark"></span>
</label>
</div>
</div>
</div>
-->
</div>
</div>