mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-12-31 12:22:18 +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;
|
||||
} else if (dataBlockLowerCase == "signfinish")
|
||||
shape = new SignFinish();
|
||||
else if (StringTools.startsWith(dataBlockLowerCase, "signplain"))
|
||||
shape = new SignPlain(cast element);
|
||||
else if (StringTools.startsWith(dataBlockLowerCase, "gemitem")) {
|
||||
shape = new Gem(cast element);
|
||||
this.totalGems++;
|
||||
this.gems.push(cast shape);
|
||||
} else if (dataBlockLowerCase == "superjumpitem")
|
||||
shape = new SuperJump(cast element);
|
||||
else if (StringTools.startsWith(dataBlockLowerCase, "signcaution"))
|
||||
shape = new SignCaution(cast element);
|
||||
else if (dataBlockLowerCase == "superbounceitem")
|
||||
shape = new SuperBounce(cast element);
|
||||
else if (dataBlockLowerCase == "roundbumper")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue