fix pad animation not working

This commit is contained in:
RandomityGuy 2022-12-17 13:51:19 +05:30
parent 7cf29dee51
commit 9984de59cd
2 changed files with 2 additions and 0 deletions

View file

@ -35,6 +35,7 @@ class EndPad extends DtsObject {
this.useInstancing = false;
this.isCollideable = true;
this.identifier = "EndPad";
this.useInstancing = false;
}
public override function init(level:MarbleWorld, onFinish:Void->Void) {

View file

@ -9,5 +9,6 @@ class StartPad extends DtsObject {
useInstancing = false;
isCollideable = true;
identifier = "StartPad";
useInstancing = false;
}
}