Skip to content
This repository has been archived by the owner on Jan 1, 2022. It is now read-only.

Commit

Permalink
Incorrect value for moves in FlxText, FlxTileblock and FlxTilemap fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
devolonter committed Dec 23, 2012
1 parent f98bfd2 commit 241785e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions flxtext.monkey
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Public

Self.width = width
frameWidth = Self.width
moves = False

_driver.Width = width
SetFormat(SYSTEM_FONT)
Expand Down
1 change: 1 addition & 0 deletions flxtileblock.monkey
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Public
MakeGraphic(width, height, 0)
active = False
immovable = True
moves = False

_stamps = New Stack<FlxStamp>()
End Method
Expand Down
1 change: 1 addition & 0 deletions flxtilemap.monkey
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Public
_tileHeight = 0
_tiles = Null
immovable = True
moves = False
_cameras = Null
_startingIndex = 0
_camera = Null
Expand Down

0 comments on commit 241785e

Please sign in to comment.