Skip to content

Commit bd1c91e

Browse files
committedJan 17, 2011
changed the MovieClipRenderer to so that it would continue to call its parant's onFrame if it wasn't set up destroy when finished with its frames. This was making it impossible to update the transform on the renderer, issue 182.
1 parent 626dd7c commit bd1c91e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/com/pblabs/rendering2D/MovieClipRenderer.as

+3
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ package com.pblabs.rendering2D
145145
//Logger.(this, "Finished playback, destroying self.");
146146
if(destroyOnEnd)
147147
owner.destroy();
148+
else
149+
super.onFrame(elapsed);
150+
148151
return;
149152
}
150153
}

0 commit comments

Comments
 (0)
Please sign in to comment.