summary refs log tree commit diff stats
path: root/res/entities.xml
blob: c3dd3f34c1512ed31f60ade6522236ee7f8c449b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="ISO-8859-1"?>
<entities>
  <entity id="checkpoint" name="Checkpoint" sprite="res/keyring.png" width="8" height="11">
    <event name="touch">
      <action type="save" />
    </event>
  </entity>
  
  <entity id="movplat" name="Moving Platform" sprite="res/platform.png" action="carry" width="24" height="8">
    <input id="dir" name="Direction" type="choice">
      <value id="0">Left</value>
      <value id="1">Right</value>
      <value id="2">Up</value>
      <value id="3">Down</value>
    </input>
    <input id="len" name="Length" type="slider" minvalue="0" maxvalue="320" />
    <input id="speed" name="Speed (px/s)" type="slider" minvalue="1" maxvalue="320" />
    <event name="touch">
      <action type="carry" />
    </event>
  </entity>
</entities>