File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,6 +41,8 @@ Version 1.0.7 (in progress in the dev branch)
4141* Complete overhaul of Physics.Arcade.Body - now significantly more stable and faster too.
4242* Updated ArcadePhysics.separateX/Y to use new body system - much better results now.
4343* QuadTree bug found in 1.0.5 now fixed. The QuadTree is updated properly now using worldTransform values.
44+ * Fixed the Bounce.In and Bounce.InOut tweens (thanks XekeDeath)
45+
4446* TODO: addMarker hh:mm:ss: ms
4547* TODO: Direction constants
4648
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ Phaser.Easing = {
240240
241241 In : function ( k ) {
242242
243- return 1 - TWEEN . Easing . Bounce . Out ( 1 - k ) ;
243+ return 1 - Phaser . Easing . Bounce . Out ( 1 - k ) ;
244244
245245 } ,
246246
@@ -268,8 +268,8 @@ Phaser.Easing = {
268268
269269 InOut : function ( k ) {
270270
271- if ( k < 0.5 ) return TWEEN . Easing . Bounce . In ( k * 2 ) * 0.5 ;
272- return TWEEN . Easing . Bounce . Out ( k * 2 - 1 ) * 0.5 + 0.5 ;
271+ if ( k < 0.5 ) return Phaser . Easing . Bounce . In ( k * 2 ) * 0.5 ;
272+ return Phaser . Easing . Bounce . Out ( k * 2 - 1 ) * 0.5 + 0.5 ;
273273
274274 }
275275
You can’t perform that action at this time.
0 commit comments