Post is about this topic:
https://photonstorm.github.io/phaser3-docs/Phaser.Physics.Arcade.Body.html#isMoving__anchor
I tried testing it in my own game and its not getting updated from neither moveTo or moveToObject methods. Am I calling this incorrectly?
I tried modifying a text object in the labs to see and output it to screen here:
https://labs.phaser.io/edit.html?src=src\physics\arcade\move%20and%20stop%20at%20position.js
full code (with moveTo as call):
var config = {
type: Phaser.AUTO,
width: 800,
height: 600,
parent: 'phaser-example',
physics: {
default: 'arcade'
},
scene: {
preload: preload,
create: create,
update: update
}
};
var debug;
var source;
var target = new Phaser.Math.Vector2();
var distanceText;
var isMoving;
new Phaser.Game(config);
function preload ()
{
this.load.image('flower', 'assets/sprites/flower-exo.png');
}
function create ()
{
source = this.physics.add.image(100, 300, 'flower');
debug = this.add.graphics();
this.input.on('pointerdown', function (pointer) {
target.x = pointer.x;
target.y = pointer.y;
// Move at 200 px/s:
this.physics.moveTo(source, target.x, target.y, 200);
debug.clear().lineStyle(1, 0x00ff00);
debug.lineBetween(0, target.y, 800, target.y);
debug.lineBetween(target.x, 0, target.x, 600);
}, this);
ismoving = this.add.text(40, 40, 'ismoving: false');
distanceText = this.add.text(10, 10, 'Click to set target', { fill: '#00ff00' });
}
function update ()
{
var distance = Phaser.Math.Distance.Between(source.x, source.y, target.x, target.y);
if (source.body.speed > 0)
{
distanceText.setText('Distance: ' + distance);
ismoving.setText('ismoving: ' + source.body.isMoving)
// 4 is our distance tolerance, i.e. how close the source can get to the target
// before it is considered as being there. The faster it moves, the more tolerance is required.
if (distance < 4)
{
source.body.reset(target.x, target.y);
}
}
}