Skip to content

Commit 892fc13

Browse files
Alistair Turnbullrrthomas
authored andcommitted
Add "solid" and "scoring" properties to the tileset.
1 parent fa58c99 commit 892fc13

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

wincoll/levels/WinColl.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,37 @@
55
<image width="16" height="16" source="Gap.png"/>
66
</tile>
77
<tile id="10" type="brick">
8+
<properties>
9+
<property name="solid" type="bool" value="true"/>
10+
</properties>
811
<image width="16" height="16" source="Brick.png"/>
912
</tile>
1013
<tile id="11" type="safe">
14+
<properties>
15+
<property name="scoring" type="bool" value="true"/>
16+
<property name="solid" type="bool" value="true"/>
17+
</properties>
1118
<image width="16" height="16" source="Safe.png"/>
1219
</tile>
1320
<tile id="12" type="diamond">
21+
<properties>
22+
<property name="scoring" type="bool" value="true"/>
23+
</properties>
1424
<image width="16" height="16" source="Diamond.png"/>
1525
</tile>
1626
<tile id="13" type="blob">
27+
<properties>
28+
<property name="solid" type="bool" value="true"/>
29+
</properties>
1730
<image width="16" height="16" source="Blob.png"/>
1831
</tile>
1932
<tile id="14" type="earth">
2033
<image width="16" height="16" source="Earth.png"/>
2134
</tile>
2235
<tile id="15" type="rock">
36+
<properties>
37+
<property name="solid" type="bool" value="true"/>
38+
</properties>
2339
<image width="16" height="16" source="Rock.png"/>
2440
</tile>
2541
<tile id="16" type="key">

0 commit comments

Comments
 (0)