Skip to content

Commit 91f8f96

Browse files
committed
TilemapWalker allows you to set a location marker into a tilemap. You can then move around with commands such as moveForward, turnLeft, etc.
New consts: Phaser.Tilemap.NORTH, SOUTH, EAST and WEST to use with the TileMapWalker Plugin.
1 parent 2b40c8a commit 91f8f96

3 files changed

Lines changed: 538 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Version 2.0.5 - "Tanchico" - in development
6464
* Pointer.pointerId added which is set by the DOM event (if present in the browser). Note that browsers can and do recycle pointer IDs.
6565
* Pointer.type and Pointer.exists properties added.
6666
* QuadTree.retrieve can now accept either a Sprite with a physics body or a Phaser.Rectangle as its parameter.
67+
* PluginManager.add now accepts additional parameters and if given a function it will pass them all to the Plugin constructor.
6768

6869

6970
### New Features
@@ -73,6 +74,13 @@ Version 2.0.5 - "Tanchico" - in development
7374
* Phaser.Tween.from allows you to set tween properties that will end up where the current object is (thanks @codevinsky, #792)
7475
* Input.getPointerFromId will return a pointer with a matching pointerId value, if any. pointerId is a value set by the browser in the DOM event.
7576
* ArcadePhysics.getObjectsUnderPointer will return all children from a Group that overlap with the given Pointer.
77+
* InputManager.minPriorityID lets you set the minimum priority level an object needs to be to be checked by a Pointer. Useful for UI layer stacking.
78+
* New consts: Phaser.Tilemap.NORTH, SOUTH, EAST and WEST to use with the TileMapWalker Plugin.
79+
80+
### New Plugins
81+
82+
* TilemapWalker allows you to set a location marker into a tilemap. You can then move around with commands such as moveForward, turnLeft, etc.
83+
7684

7785

7886
### Bug Fixes
@@ -84,6 +92,7 @@ Version 2.0.5 - "Tanchico" - in development
8492
* Emitter.makeParticles updated to use Array.isArray() check on the key/frame values, so non-string objects can be passed in (thanks @AnderbergE, fix #786)
8593
* Tilemap.createFromObjects will now force the creation of the property again even if it doesn't exist (regression fix from 2.0.4)
8694
* Phaser.Line.intersectsPoints fixed by properly checking the boundaries (thanks @woutercommandeur, fix #790)
95+
* Group.set and setAll were changed in 2.0.4 to not create the property unless it existed. This broke backwards compatibility, so has been fixed.
8796

8897

8998

0 commit comments

Comments
 (0)