mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-05-03 08:01:45 +00:00
add missing signs back
This commit is contained in:
parent
70daee42f7
commit
be9ec77e13
1 changed files with 4 additions and 0 deletions
|
|
@ -64,12 +64,16 @@ class MarbleWorldMacros {
|
||||||
endPad = cast shape;
|
endPad = cast shape;
|
||||||
} else if (dataBlockLowerCase == "signfinish")
|
} else if (dataBlockLowerCase == "signfinish")
|
||||||
shape = new SignFinish();
|
shape = new SignFinish();
|
||||||
|
else if (StringTools.startsWith(dataBlockLowerCase, "signplain"))
|
||||||
|
shape = new SignPlain(cast element);
|
||||||
else if (StringTools.startsWith(dataBlockLowerCase, "gemitem")) {
|
else if (StringTools.startsWith(dataBlockLowerCase, "gemitem")) {
|
||||||
shape = new Gem(cast element);
|
shape = new Gem(cast element);
|
||||||
this.totalGems++;
|
this.totalGems++;
|
||||||
this.gems.push(cast shape);
|
this.gems.push(cast shape);
|
||||||
} else if (dataBlockLowerCase == "superjumpitem")
|
} else if (dataBlockLowerCase == "superjumpitem")
|
||||||
shape = new SuperJump(cast element);
|
shape = new SuperJump(cast element);
|
||||||
|
else if (StringTools.startsWith(dataBlockLowerCase, "signcaution"))
|
||||||
|
shape = new SignCaution(cast element);
|
||||||
else if (dataBlockLowerCase == "superbounceitem")
|
else if (dataBlockLowerCase == "superbounceitem")
|
||||||
shape = new SuperBounce(cast element);
|
shape = new SuperBounce(cast element);
|
||||||
else if (dataBlockLowerCase == "roundbumper")
|
else if (dataBlockLowerCase == "roundbumper")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue