diff --git a/src/shapes/EndPad.hx b/src/shapes/EndPad.hx index 9383741e..d4177949 100644 --- a/src/shapes/EndPad.hx +++ b/src/shapes/EndPad.hx @@ -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) { diff --git a/src/shapes/StartPad.hx b/src/shapes/StartPad.hx index dd2009da..c4a04e38 100644 --- a/src/shapes/StartPad.hx +++ b/src/shapes/StartPad.hx @@ -9,5 +9,6 @@ class StartPad extends DtsObject { useInstancing = false; isCollideable = true; identifier = "StartPad"; + useInstancing = false; } }