Svipal
72cb3343d6
cleaning up debug prints and such
2020-03-21 11:25:04 +01:00
Svipal
cec71a85ea
added hexagonal support
2020-03-21 10:19:03 +01:00
Svipal
406e6eb093
fixed worldtotilex on odd tiles
2020-03-14 10:57:19 +01:00
Svipal
a7d4816564
added staggered support
2020-03-14 10:11:04 +01:00
Svipal
1573e25214
added isoCullDistances parameter to DynamicTilemapLayer
2020-02-07 15:21:11 +01:00
Svipal
d7a857697f
fixed worldToTileXY and tileToWorldXY undefined point mistakes. Fixed getTilesWithinXY incorrect snaptoFloor setting
2020-02-07 14:05:42 +01:00
Svipal
5747f7102d
fixed problems with removeTileAt
2020-02-05 18:42:20 +01:00
Svipal
aaf512b9cd
fixed problems with putting tiles from null tiles
2020-02-05 18:37:40 +01:00
Svipal
a8b60cf946
fixed dynamic layer rendering
2020-02-04 04:57:28 +01:00
Svipal
fd29e96a5d
changed orientation to be part of the layer, really cleaned up API. Started tests on the dynamic layer. Trying to understand getTileAt bug
2020-01-30 15:58:07 +01:00
Svipal
70cbdc0925
preparing for WIP PR 4
2020-01-29 20:32:08 +01:00
Svipal
95df0be94a
changed orientation localisation to layer, will make easier the fixing of pixelwidth and height and makes more sense overall
2020-01-29 20:27:40 +01:00
Svipal
ccbff39074
preparing WIP PR
2020-01-29 19:20:25 +01:00
Svipal
a82b27ce6f
added deep copy, doesn't change anything , this.orientation in the tile still bugging
2020-01-29 19:01:22 +01:00
Svipal
050325bff0
tried to pin down where the orientation became undefined, no success.
2020-01-29 17:42:39 +01:00
Svipal
f1e1ab1941
cleaned up some useless files
2020-01-27 21:40:17 +01:00
Svipal
95d2ff9996
need to compare across commits to understand regression regarding this.x
2020-01-27 20:12:53 +01:00
Svipal
946857f756
pixel changes
2020-01-26 22:51:01 +01:00
Svipal
e4857ce48a
yoyuee
2020-01-19 20:55:09 +01:00
Svipal
fbe3345e54
Updated RemoveTileAtWorldXy, PutTileAtWorldXY, GetTilesWithinShape and GetTilesWithinWorldXY
2020-01-19 20:50:57 +01:00
Richard Davey
85873d2958
3.22 Release
2020-01-15 13:03:56 +00:00
Richard Davey
73a727895e
3.21.0 dist files
2019-11-22 17:03:31 +00:00
Richard Davey
e762a89223
3.20.1 dist files
2019-10-15 12:31:38 +01:00
Richard Davey
4e59d2c373
New dist files
2019-10-11 19:07:32 +01:00
Richard Davey
e0ec646496
3.19 Release
2019-08-08 16:12:17 +01:00
Richard Davey
3184f2843a
3.18.1 Build Files
2019-06-20 10:00:45 +01:00
Richard Davey
d2738f084b
3.18 Release
2019-06-19 16:06:51 +01:00
Richard Davey
a854a96307
3.17 Release files
2019-05-10 16:38:07 +01:00
Richard Davey
04080bc1ba
3.16.2 Release
2019-02-11 09:59:29 +00:00
Richard Davey
f9cb8972ab
3.16.1 (because, npm)
2019-02-05 00:49:42 +00:00
Richard Davey
9dbf4d4d06
3.16 Build files
2019-02-05 00:12:29 +00:00
Richard Davey
61008f4eda
3.15.1 Release
2018-10-16 16:24:43 +01:00
Richard Davey
b80952ae5d
3.15 build
2018-10-16 15:38:10 +01:00
Richard Davey
c6faa7c8a7
3.14 Release
2018-10-01 14:44:42 +01:00
Richard Davey
a39555a53d
3.13 Build
2018-09-20 16:58:00 +01:00
Richard Davey
a533895569
3.12 Release
2018-09-04 15:48:36 +01:00
Richard Davey
5189d95e72
3.12.0 Beta 3 Release
2018-08-23 19:29:53 +01:00
Richard Davey
c94404986c
3.12 Beta 2 Release
2018-08-09 14:16:12 +01:00
Richard Davey
1d4440a726
3.12 Beta 1 Release
2018-08-06 15:33:32 +01:00
Richard Davey
05e6f65d51
3.11 Release
2018-07-13 11:37:57 +01:00
Richard Davey
7c9f731540
3.10.1 Release
2018-06-13 13:52:56 +01:00
Richard Davey
16f61b402b
3.10 Release
2018-06-13 09:00:40 +01:00
Richard Davey
23d3fe3774
3.9.0 Release
2018-05-24 23:42:40 +01:00
zacharysarette
de759b69a5
Fixes a bug #3651
...
Describe the changes below:
The tween animation was getting stuck when calling restart on it after being added.
It now checks to see if this.state === TWEEN_CONST.PENDING_ADD in the tween restart function
If true, sets this.seek(0) and this.parent.makeActive(this)
This fixes the issue that makes the tween stuck when restarting the new tween directly after adding a the new tween.
Updates to package.json and package-lock.json were undone from the last pull request.
2018-05-23 21:01:07 +09:00
zacharysarette
6af861b813
Revert "This fixes an issue with the tween restart function in phaser.js."
...
This reverts commit f170c0f406
.
2018-05-23 20:41:48 +09:00
zacharysarette
f170c0f406
This fixes an issue with the tween restart function in phaser.js.
...
It checks to see if state === TWEEN_CONST.PENDING_ADD.
If so sets seek(0) and parent.makeActive(this).
This fixes the issue that makes the tween stuck when restarting after adding a new tween.
2018-05-20 14:01:23 +09:00
Richard Davey
62c458d90e
New 3.8 build files
2018-05-16 15:17:51 +01:00
Richard Davey
dfc3cb92c0
3.8.0 Release
2018-05-16 15:08:01 +01:00
Richard Davey
7788602518
3.7.1 Release
2018-05-08 23:47:33 +01:00
Richard Davey
321ccf883a
3.7.0 Release
2018-05-08 23:29:42 +01:00