summary refs log tree commit diff stats
path: root/res/entities.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/entities.xml')
-rw-r--r--res/entities.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/res/entities.xml b/res/entities.xml new file mode 100644 index 0000000..c3dd3f3 --- /dev/null +++ b/res/entities.xml
@@ -0,0 +1,22 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<entities>
3 <entity id="checkpoint" name="Checkpoint" sprite="res/keyring.png" width="8" height="11">
4 <event name="touch">
5 <action type="save" />
6 </event>
7 </entity>
8
9 <entity id="movplat" name="Moving Platform" sprite="res/platform.png" action="carry" width="24" height="8">
10 <input id="dir" name="Direction" type="choice">
11 <value id="0">Left</value>
12 <value id="1">Right</value>
13 <value id="2">Up</value>
14 <value id="3">Down</value>
15 </input>
16 <input id="len" name="Length" type="slider" minvalue="0" maxvalue="320" />
17 <input id="speed" name="Speed (px/s)" type="slider" minvalue="1" maxvalue="320" />
18 <event name="touch">
19 <action type="carry" />
20 </event>
21 </entity>
22</entities>