mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-04-26 12:41:40 +00:00
fix pad animation not working
This commit is contained in:
parent
7cf29dee51
commit
9984de59cd
2 changed files with 2 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ class EndPad extends DtsObject {
|
||||||
this.useInstancing = false;
|
this.useInstancing = false;
|
||||||
this.isCollideable = true;
|
this.isCollideable = true;
|
||||||
this.identifier = "EndPad";
|
this.identifier = "EndPad";
|
||||||
|
this.useInstancing = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override function init(level:MarbleWorld, onFinish:Void->Void) {
|
public override function init(level:MarbleWorld, onFinish:Void->Void) {
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,6 @@ class StartPad extends DtsObject {
|
||||||
useInstancing = false;
|
useInstancing = false;
|
||||||
isCollideable = true;
|
isCollideable = true;
|
||||||
identifier = "StartPad";
|
identifier = "StartPad";
|
||||||
|
useInstancing = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue