Skip to content

Commit

Permalink
(v2) Use the right Phaser v3.22 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhaserEditor2D committed Jan 21, 2020
1 parent b2e1fb3 commit 67fbc62
Show file tree
Hide file tree
Showing 15 changed files with 10 additions and 1,290 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var CONST = {
* @type {string}
* @since 3.0.0
*/
VERSION: '3.23.0-beta1',
VERSION: '3.22.0',

BlendModes: require('./renderer/BlendModes'),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ var PathFollower = {
var tweenData = tween.data[0];
var pathVector = this.pathVector;

if (tweenData.state === TWEEN_CONST.COMPLETE)
if (tweenData.state !== TWEEN_CONST.COMPLETE)
{
this.path.getPoint(1, pathVector);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ var GameObjects = {
PathFollower: require('./pathfollower/PathFollower'),
RenderTexture: require('./rendertexture/RenderTexture'),
RetroFont: require('./bitmaptext/RetroFont'),
Rope: require('./rope/Rope'),
Sprite: require('./sprite/Sprite'),
Text: require('./text/static/Text'),
TileSprite: require('./tilesprite/TileSprite'),
Expand Down Expand Up @@ -71,7 +70,6 @@ var GameObjects = {
Particles: require('./particles/ParticleManagerFactory'),
PathFollower: require('./pathfollower/PathFollowerFactory'),
RenderTexture: require('./rendertexture/RenderTextureFactory'),
Rope: require('./rope/RopeFactory'),
Sprite: require('./sprite/SpriteFactory'),
StaticBitmapText: require('./bitmaptext/static/BitmapTextFactory'),
Text: require('./text/static/TextFactory'),
Expand Down Expand Up @@ -102,7 +100,6 @@ var GameObjects = {
Image: require('./image/ImageCreator'),
Particles: require('./particles/ParticleManagerCreator'),
RenderTexture: require('./rendertexture/RenderTextureCreator'),
Rope: require('./rope/RopeCreator'),
Sprite: require('./sprite/SpriteCreator'),
StaticBitmapText: require('./bitmaptext/static/BitmapTextCreator'),
Text: require('./text/static/TextCreator'),
Expand Down
Loading

0 comments on commit 67fbc62

Please sign in to comment.