forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport_sprite_sheet.xml
More file actions
72 lines (60 loc) · 2.28 KB
/
export_sprite_sheet.xml
File metadata and controls
72 lines (60 loc) · 2.28 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
<!-- ASEPRITE -->
<!-- Copyright (C) 2001-2015 by David Capello -->
<gui>
<window id="export_sprite_sheet" text="Export Sprite Sheet">
<grid columns="4">
<label text="Sheet Type:" />
<combobox id="sheet_type" cell_hspan="3" />
<label id="columns_label" text="# of Columns:" />
<entry id="columns" text="" maxsize="4" />
<boxfiller cell_hspan="2" />
<label id="rows_label" text="# of Rows:" />
<entry id="rows" text="" maxsize="4" />
<boxfiller cell_hspan="2" />
<hbox />
<vbox>
<check id="padding_enabled" text="Padding" />
</vbox>
<grid columns="2" id="padding_container" cell_hspan="2">
<label text="Border:" />
<entry id="border_padding" text="0" maxsize="4" />
<label text="Shape:" />
<entry id="shape_padding" text="0" maxsize="4" />
<label text="Inner:" />
<entry id="inner_padding" text="0" maxsize="4" />
</grid>
<label id="fit_width_label" text="Width:" />
<combobox id="fit_width" text="" maxsize="5" editable="true" />
<label id="fit_height_label" text="Height:" />
<combobox id="fit_height" text="" maxsize="5" editable="true" />
<hbox id="best_fit_filler" />
<check cell_hspan="3" id="best_fit" text="Best fit for texture" />
<label text="Layers:" />
<combobox id="layers" text="" cell_hspan="3" />
<label text="Frames:" />
<combobox id="frames" text="" cell_hspan="3" />
<check id="image_enabled" text="Output File" />
<button id="image_filename" cell_hspan="3" />
<check id="data_enabled" text="JSON Data" />
<button id="data_filename" cell_hspan="3" />
<hbox />
<hbox id="data_meta" cell_hspan="3">
<combobox id="data_format">
<listitem text="Hash" value="0" />
<listitem text="Array" value="1" />
</combobox>
<label text="Meta:" />
<check id="list_layers" text="Layers" />
<check id="list_tags" text="Frame Tags" />
</hbox>
<check id="open_generated" text="Open generated sprite sheet" cell_hspan="4" />
<hbox cell_hspan="4">
<boxfiller />
<hbox homogeneous="true">
<button id="export_button" text="&Export" minwidth="60" magnet="true" />
<button text="&Cancel" minwidth="60" closewindow="true" />
</hbox>
</hbox>
</grid>
</window>
</gui>