Pārlūkot izejas kodu

fix missing super.sync

ncannasse 11 gadi atpakaļ
vecāks
revīzija
1c356502e4
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  1. 1 0
      h2d/Anim.hx

+ 1 - 0
h2d/Anim.hx

@@ -29,6 +29,7 @@ class Anim extends Drawable {
 	}
 
 	override function sync( ctx : RenderContext ) {
+		super.sync(ctx);
 		currentFrame += speed * ctx.elapsedTime;
 		if( currentFrame < frames.length )
 			return;