Skip to content

Commit

Permalink
fixed #11, Incorrect value for moves in FlxText, FlxTileblock and Flx…
Browse files Browse the repository at this point in the history
…Tilemap
  • Loading branch information
moly committed Sep 13, 2012
1 parent 2c1e5dc commit a20aca9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions org/flixel/FlxText.as
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ package org.flixel
_regen = true;
_shadow = 0;
allowCollisions = NONE;
moves = false;
calcFrame();
}

Expand Down
1 change: 1 addition & 0 deletions org/flixel/FlxTileblock.as
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ package org.flixel
makeGraphic(Width,Height,0,true);
active = false;
immovable = true;
moves = false;
}

/**
Expand Down
1 change: 1 addition & 0 deletions org/flixel/FlxTilemap.as
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ package org.flixel
_tiles = null;
_tileObjects = null;
immovable = true;
moves = false;
cameras = null;
_debugTileNotSolid = null;
_debugTilePartial = null;
Expand Down

0 comments on commit a20aca9

Please sign in to comment.