Skip to content

Commit a20aca9

Browse files
committed
fixed #11, Incorrect value for moves in FlxText, FlxTileblock and FlxTilemap
1 parent 2c1e5dc commit a20aca9

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

org/flixel/FlxText.as

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ package org.flixel
6464
_regen = true;
6565
_shadow = 0;
6666
allowCollisions = NONE;
67+
moves = false;
6768
calcFrame();
6869
}
6970

org/flixel/FlxTileblock.as

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package org.flixel
2525
makeGraphic(Width,Height,0,true);
2626
active = false;
2727
immovable = true;
28+
moves = false;
2829
}
2930

3031
/**

org/flixel/FlxTilemap.as

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ package org.flixel
139139
_tiles = null;
140140
_tileObjects = null;
141141
immovable = true;
142+
moves = false;
142143
cameras = null;
143144
_debugTileNotSolid = null;
144145
_debugTilePartial = null;

0 commit comments

Comments
 (0)