File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ Version 0.4.1 [Not released]
2
+ ****************************************************************************************************
3
+ - fixed a problem with preloading sprite sheet images when using tile based sheets
4
+ - worked around a bug in Safari with addFlippedFrames
5
+
6
+
1
7
Version 0.4 [Nov 30, 2011]
2
8
****************************************************************************************************
3
9
- completely rewrote BitmapSequence (now BitmapAnimation) & SpriteSheet including data format
Original file line number Diff line number Diff line change @@ -361,4 +361,4 @@ var p = BitmapAnimation.prototype = new DisplayObject();
361
361
}
362
362
363
363
window . BitmapAnimation = BitmapAnimation ;
364
- } ( window ) ) ;
364
+ } ( window ) ) ;
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ var p = SpriteSheet.prototype;
215
215
if ( ! img . getContext && ! img . complete ) {
216
216
this . _loadCount ++ ;
217
217
this . complete = false ;
218
- img . onload = this . _handleImageLoad ( ) ;
218
+ ( function ( o ) { img . onload = function ( ) { o . _handleImageLoad ( ) ; } } ) ( this ) ;
219
219
}
220
220
}
221
221
}
You can’t perform that action at this time.
0 commit comments