Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced single-quote strings and layer variables. #110

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions objects/godmode_GD.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -51,34 +51,34 @@
<string>switch step
{
case 0:
if keyboard_check(ord('I')) { step++; }
if keyboard_check(ord("I")) { step++; }
break;
case 1:
if keyboard_check(ord('D')) { step++; }
if keyboard_check(ord("D")) { step++; }
break;
case 2:
if keyboard_check(ord('S')) { step++; }
if keyboard_check(ord("S")) { step++; }
break;
case 3:
if keyboard_check(ord('P')) { step++; }
if keyboard_check(ord("P")) { step++; }
break;
case 4:
if keyboard_check(ord('I')) { step++; }
if keyboard_check(ord("I")) { step++; }
break;
case 5:
if keyboard_check(ord('S')) { step++; }
if keyboard_check(ord("S")) { step++; }
break;
case 6:
if keyboard_check(ord('P')) { step++; }
if keyboard_check(ord("P")) { step++; }
break;
case 7:
if keyboard_check(ord('O')) { step++; }
if keyboard_check(ord("O")) { step++; }
break;
case 8:
if keyboard_check(ord('P')) { step++; }
if keyboard_check(ord("P")) { step++; }
break;
case 9:
if keyboard_check(ord('D'))
if keyboard_check(ord("D"))
{
step++;
if (global.godmode == 1)
Expand Down
2 changes: 1 addition & 1 deletion objects/oCharacter.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ sfx_stop(sndAbsorbX);
instance_create(x, y - 16, oHatchling);
}
}
if (oControl.mod_earlybaby == 1 &amp;&amp; global.event[304] == 0 &amp;&amp; !instance_exists(oHatchling) &amp;&amp; room_get_name(room) != 'rm_a7c01') instance_create(x, y - 16, oHatchling);
if (oControl.mod_earlybaby == 1 &amp;&amp; global.event[304] == 0 &amp;&amp; !instance_exists(oHatchling) &amp;&amp; room_get_name(room) != "rm_a7c01") instance_create(x, y - 16, oHatchling);

spawn_random_septogg(1, max(1, floor(room_width/500), floor(room_height/500)), 18);

Expand Down
42 changes: 21 additions & 21 deletions objects/oControl.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -288,27 +288,27 @@ subScrItemOffset = 0;
ini_open("lang/fonts/sizes.ini");

if(file_exists("lang/fonts/04b09.ttf")) {
font_replace(fontGUI, "lang/fonts/04b09.ttf", ini_read_real('Sizes', '04b09_(large)', 16), false, false, 32, 255);
font_replace(fontSubScr, "lang/fonts/04b09.ttf", ini_read_real('Sizes', '04b09_(small)', 8), false, false, 32, 255);
GUIOffset = ini_read_real('Offsets', '04b09_(large)_offset', 0);
subScrHeaderOffset = ini_read_real('Offsets', '04b09_(small)_offset', 0);
font_replace(fontGUI, "lang/fonts/04b09.ttf", ini_read_real("Sizes", "04b09_(large)", 16), false, false, 32, 255);
font_replace(fontSubScr, "lang/fonts/04b09.ttf", ini_read_real("Sizes", "04b09_(small)", 8), false, false, 32, 255);
GUIOffset = ini_read_real("Offsets", "04b09_(large)_offset", 0);
subScrHeaderOffset = ini_read_real("Offsets", "04b09_(small)_offset", 0);
}

if(file_exists("lang/fonts/Acknowledge_TT_BRK.ttf")) {
font_replace(fontGUI2, "lang/fonts/Acknowledge_TT_BRK.ttf", ini_read_real('Sizes', 'Acknowledge_TT_BRK', 13), false, false, 32, 255);
font_replace(fontGUI2, "lang/fonts/Acknowledge_TT_BRK.ttf", ini_read_real("Sizes", "Acknowledge_TT_BRK", 13), false, false, 32, 255);
}

if(file_exists("lang/fonts/uni_05_53.ttf")) {
font_replace(fontMenuSmall, "lang/fonts/uni_05_53.ttf", ini_read_real('Sizes', 'uni_05_53', 8), false, false, 32, 255);
font_replace(fontMenuSmall, "lang/fonts/uni_05_53.ttf", ini_read_real("Sizes", "uni_05_53", 8), false, false, 32, 255);
}

if(file_exists("lang/fonts/04b24.ttf")) {
font_replace(fontMenuTiny, "lang/fonts/04b24.ttf", ini_read_real('Sizes', '04b24', 16), false, false, 32, 255);
subScrItemOffset = ini_read_real('Offsets', '04b24_offset', -6);
font_replace(fontMenuTiny, "lang/fonts/04b24.ttf", ini_read_real("Sizes", "04b24", 16), false, false, 32, 255);
subScrItemOffset = ini_read_real("Offsets", "04b24_offset", -6);
}

if(file_exists("lang/fonts/Glasstown_NBP.ttf")) {
font_replace(fontMenuSmall2, "lang/fonts/Glasstown_NBP.ttf", ini_read_real('Sizes', 'Glasstown_NBP', 16), false, false, 32, 255);
font_replace(fontMenuSmall2, "lang/fonts/Glasstown_NBP.ttf", ini_read_real("Sizes", "Glasstown_NBP", 16), false, false, 32, 255);
}

ini_close();
Expand Down Expand Up @@ -845,40 +845,40 @@ if (os_is_browser) set_fullscreen(global.opfullscreen);
switch translatestep
{
case 0:
if keyboard_check(ord('T')) { translatestep++; }
if keyboard_check(ord("T")) { translatestep++; }
break;
case 1:
if keyboard_check(ord('R')) { translatestep++; }
if keyboard_check(ord("R")) { translatestep++; }
break;
case 2:
if keyboard_check(ord('A')) { translatestep++; }
if keyboard_check(ord("A")) { translatestep++; }
break;
case 3:
if keyboard_check(ord('N')) { translatestep++; }
if keyboard_check(ord("N")) { translatestep++; }
break;
case 4:
if keyboard_check(ord('S')) { translatestep++; }
if keyboard_check(ord("S")) { translatestep++; }
break;
case 5:
if keyboard_check(ord('L')) { translatestep++; }
if keyboard_check(ord("L")) { translatestep++; }
break;
case 6:
if keyboard_check(ord('A')) { translatestep++; }
if keyboard_check(ord("A")) { translatestep++; }
break;
case 7:
if keyboard_check(ord('T')) { translatestep++; }
if keyboard_check(ord("T")) { translatestep++; }
break;
case 8:
if keyboard_check(ord('E')) { translatestep++; }
if keyboard_check(ord("E")) { translatestep++; }
break;
case 9:
if keyboard_check(ord('5')) { translatestep++; }
if keyboard_check(ord("5")) { translatestep++; }
break;
case 10:
if keyboard_check(ord('7')) { translatestep++; }
if keyboard_check(ord("7")) { translatestep++; }
break;
case 11:
if keyboard_check(ord('4'))
if keyboard_check(ord("4"))
{
translatestep++;
global.targetx = 64;
Expand Down
6 changes: 3 additions & 3 deletions objects/oFadeTiles.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<kind>1</kind>
<string>targetalpha = 0;
falpha = 1;
layer = -101;
layerVariable = -101;
</string>
</argument>
</arguments>
Expand Down Expand Up @@ -129,7 +129,7 @@ for (i = 0; i &lt; array_length_1d(tile_list); i += 1) {
<arguments>
<argument>
<kind>1</kind>
<string>tile_list = tile_get_ids_at_depth(layer);
<string>tile_list = tile_get_ids_at_depth(layerVariable);
</string>
</argument>
</arguments>
Expand All @@ -153,7 +153,7 @@ for (i = 0; i &lt; array_length_1d(tile_list); i += 1) {
<argument>
<kind>1</kind>
<string>draw_set_font(fontMenuSmall);
draw_text_shadow(x, y, string(layer));
draw_text_shadow(x, y, string(layerVariable));
</string>
</argument>
</arguments>
Expand Down
2 changes: 1 addition & 1 deletion objects/oItemBall.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ if (global.item[item])
instance_destroy(); //original
}

if (room_get_name(room) == 'rm_a2a07') { image_speed = 0; }
if (room_get_name(room) == "rm_a2a07") { image_speed = 0; }
</string>
</argument>
</arguments>
Expand Down
6 changes: 3 additions & 3 deletions objects/oTilesRandomAlpha.object.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<argument>
<kind>1</kind>
<string>falpha = 1;
layer = 99;
layerVariable = 99;
</string>
</argument>
</arguments>
Expand Down Expand Up @@ -132,7 +132,7 @@ tile_list = ds_list_create();
t = 0;
for (i = 0; i &lt; room_width / 16; i += 1) {
for (j = 0; j &lt; room_height / 16; j += 1) {
t_id = tile_layer_find(layer, i * 16, j * 16);
t_id = tile_layer_find(layerVariable, i * 16, j * 16);
if (t_id != -1) {
ds_list_add(tile_list, t_id);
t += 1;
Expand Down Expand Up @@ -162,7 +162,7 @@ for (i = 0; i &lt; room_width / 16; i += 1) {
<argument>
<kind>1</kind>
<string>draw_set_font(fontMenuSmall);
draw_text_shadow(x, y, string(layer));
draw_text_shadow(x, y, string(layerVariable));
</string>
</argument>
</arguments>
Expand Down
2 changes: 1 addition & 1 deletion rooms/rm_a0h02.room.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ load_timeofday_bgs(global.timeofday);</code>
<instance objName="oBlockShoot" x="1088" y="240" name="inst_101102" locked="0" code="&#xA;link_surface_tile(48, 288);&#xA;material = 1;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="0" y="96" name="inst_101103" locked="0" code="targetroom = rm_a0h01;&#xA;targetx = 4464;&#xA;targety = 1056;&#xA;height = 64;&#xA;direction = 180;&#xA;camstartx = 4464;&#xA;camstarty = 1080;&#xA;transitionx = 316;&#xA;transitiony = 96;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oCameraLimit" x="0" y="224" name="inst_101104" locked="0" code="&#xA;areax = 1072;&#xA;areay = -240;&#xA;lockx = 0;&#xA;locky = 120;&#xA;wall = 0;&#xA;smoothin = 15;&#xA;smoothout = 15;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="1168" y="272" name="inst_101105" locked="0" code="&#xA;areax = 624;&#xA;areay = 32;&#xA;if (global.timeofday == 0) layer = -101;&#xA;if (global.timeofday == 1) layer = -111;&#xA;if (global.timeofday == 2) layer = -121;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="1168" y="272" name="inst_101105" locked="0" code="&#xA;areax = 624;&#xA;areay = 32;&#xA;if (global.timeofday == 0) layerVariable = -101;&#xA;if (global.timeofday == 1) layerVariable = -111;&#xA;if (global.timeofday == 2) layerVariable = -121;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oCameraLimit" x="1280" y="480" name="inst_101106" locked="0" code="&#xA;areax = 320;&#xA;areay = -240;&#xA;lockx = 0;&#xA;locky = 360;&#xA;wall = 0;&#xA;smoothin = 120;&#xA;smoothout = 50;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="1600" y="352" name="inst_101107" locked="0" code="&#xA;targetroom = rm_a0h02a;&#xA;targetx = 16;&#xA;targety = 112;&#xA;height = 80;&#xA;direction = 0;&#xA;camstartx = 16;&#xA;camstarty = 120;&#xA;transitionx = 4;&#xA;transitiony = 112;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oCameraWallR" x="1168" y="208" name="inst_101108" locked="0" code="&#xA;areax = 320;&#xA;areay = -240;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
Expand Down
2 changes: 1 addition & 1 deletion rooms/rm_a0h02a.room.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ load_timeofday_bgs(global.timeofday);</code>
<instance objName="oBlockShoot" x="112" y="864" name="inst_101210" locked="0" code="&#xA;link_surface_tile(16, 288);&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oBlockShoot" x="128" y="864" name="inst_101211" locked="0" code="&#xA;link_surface_tile(32, 288);&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oBlockShoot" x="144" y="864" name="inst_101212" locked="0" code="&#xA;link_surface_tile(48, 288);&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="-64" y="32" name="inst_101213" locked="0" code="&#xA;areax = 320+64;&#xA;areay = 32;&#xA;if (global.timeofday == 0) layer = -101;&#xA;if (global.timeofday == 1) layer = -111;&#xA;if (global.timeofday == 2) layer = -121;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="-64" y="32" name="inst_101213" locked="0" code="&#xA;areax = 320+64;&#xA;areay = 32;&#xA;if (global.timeofday == 0) layerVariable = -101;&#xA;if (global.timeofday == 1) layerVariable = -111;&#xA;if (global.timeofday == 2) layerVariable = -121;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="128" y="960" name="inst_101214" locked="0" code="targetroom = rm_a0h03;&#xA;targetx = 448;&#xA;targety = 16;&#xA;height = 64;&#xA;direction = 270;&#xA;camstartx = 480;&#xA;camstarty = 16;&#xA;transitionx = 134;&#xA;transitiony = 4;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="0" y="112" name="inst_101215" locked="0" code="targetroom = rm_a0h02;&#xA;targetx = 1584;&#xA;targety = 352;&#xA;height = 80;&#xA;direction = 180;&#xA;camstartx = 1440; // og 352 lol&#xA;camstarty = 360;&#xA;transitionx = 316;&#xA;transitiony = 112;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid4x1" x="-64" y="112" name="inst_2265F5F4" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
Expand Down
2 changes: 1 addition & 1 deletion rooms/rm_a0h04.room.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ make_liquid(0, 896, 1, 0, 0, 0, 0);</code>
<instance objName="oSolid8x1" x="80" y="704" name="inst_101535" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oBlockStep" x="16" y="736" name="inst_101536" locked="0" code="visible = true;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="16" y="64" name="inst_101537" locked="0" code="&#xA;areax = 32;&#xA;areay = 288;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="16" y="624" name="inst_101538" locked="0" code="&#xA;areax = 16;&#xA;areay = 128;&#xA;layer = -102;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="16" y="624" name="inst_101538" locked="0" code="&#xA;areax = 16;&#xA;areay = 128;&#xA;layerVariable = -102;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="320" y="96" name="inst_101539" locked="0" code="&#xA;targetroom = rm_a0h03b;&#xA;targetx = 16;&#xA;targety = 96;&#xA;height = 64;&#xA;direction = 0;&#xA;camstartx = 16;&#xA;camstarty = 96;&#xA;transitionx = 4;&#xA;transitiony = 96;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oCameraLimit" x="0" y="960" name="inst_101540" locked="0" code="&#xA;areax = 320;&#xA;areay = -208;&#xA;lockx = 0;&#xA;locky = 840;&#xA;wall = 0;&#xA;smoothin = 60;&#xA;smoothout = 15;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid4x1" x="320" y="96" name="inst_FECDBC25" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
Expand Down
2 changes: 1 addition & 1 deletion rooms/rm_a0h11.room.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ mus_change(mus_get_main_song());</code>
<instance objName="oBlockStep" x="576" y="656" name="inst_104395" locked="0" code="&#xA;link_tile(tlRock3A, 64, 80);&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oBlockStep" x="576" y="672" name="inst_104396" locked="0" code="&#xA;link_tile(tlRock3A, 96, 0);&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="640" y="656" name="inst_104397" locked="0" code="&#xA;targetroom = rm_a0h10b;&#xA;targetx = 16;&#xA;targety = 176;&#xA;height = 96;&#xA;direction = 0;&#xA;camstartx = 16;&#xA;camstarty = 120;&#xA;transitionx = 4;&#xA;transitiony = 176;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="576" y="592" name="inst_104398" locked="0" code="&#xA;areax = 120;&#xA;areay = 96;&#xA;layer = -106;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="576" y="592" name="inst_104398" locked="0" code="&#xA;areax = 120;&#xA;areay = 96;&#xA;layerVariable = -106;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oGotoRoom" x="0" y="1392" name="inst_104399" locked="0" code="&#xA;targetroom = rm_a0h24;&#xA;targetx = 624;&#xA;targety = 192;&#xA;height = 64;&#xA;direction = 180;&#xA;camstartx = 320+160;&#xA;camstarty = 120;&#xA;transitionx = 316;&#xA;transitiony = 192;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oCaveNest" x="176" y="136" name="inst_104400" locked="0" code="&#xA;image_index = 2;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oCaveNest" x="128" y="408" name="inst_104401" locked="0" code="&#xA;image_index = 2;&#xA;if (global.lavastate &lt;= 3) instance_destroy();&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
Expand Down
2 changes: 1 addition & 1 deletion rooms/rm_a0h17e.room.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if (global.event[172] == 3) {
<instance objName="oSlope3" x="112" y="272" name="inst_123420" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="464" y="416" name="inst_123421" locked="0" code="&#xA;areax = 96;&#xA;areay = 64;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oDrillWall" x="448" y="320" name="inst_123422" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="672" y="416" name="inst_123423" locked="0" code="&#xA;areax = 200;&#xA;areay = 64;&#xA;layer = -102;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="672" y="416" name="inst_123423" locked="0" code="&#xA;areax = 200;&#xA;areay = 64;&#xA;layerVariable = -102;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid2x2" x="1152" y="368" name="inst_123424" locked="0" code="&#xA;material = 4;&#xA;" scaleX="2" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid1" x="1040" y="64" name="inst_123425" locked="0" code="" scaleX="3" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid1" x="560" y="432" name="inst_123426" locked="0" code="" scaleX="2" scaleY="1" colour="4294967295" rotation="0"/>
Expand Down
2 changes: 1 addition & 1 deletion rooms/rm_a0h32.room.gmx
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ global.objdeactivate = 0;</code>
<instance objName="oSolid1" x="288" y="1104" name="inst_9FBF65E5" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid1" x="192" y="784" name="inst_45BFEF15" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oBlockPBomb" x="288" y="672" name="inst_55622E98" locked="0" code="&#xA;link_tile(tlRock4A, 32, 0);&#xA;regentime = -1;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="256" y="1072" name="inst_5FB5C987" locked="0" code="layer = -102;&#xA;areax = 48;&#xA;areay = 32;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oFadeTiles" x="256" y="1072" name="inst_5FB5C987" locked="0" code="layerVariable = -102;&#xA;areax = 48;&#xA;areay = 32;&#xA;" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid1" x="304" y="1104" name="inst_2ABD3965" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oSolid1" x="304" y="1056" name="inst_95BD880E" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
<instance objName="oBarrier2" x="208" y="96" name="inst_FC9BC2A4" locked="0" code="" scaleX="1" scaleY="1" colour="4294967295" rotation="0"/>
Expand Down
Loading