console.log (pointer.x) work fine but console.log (pointer.worldX) shows up undefined. I am trying to get my player sprite to move to the point clicked within the playable area. (think diablo) I can use scrollable viewport with cursor keys, but once I try mouse click I end up going around in circles. sprite.rotation = game.physics.arcade.moveToPointer(sprite, 600);is fine (it does not need world co-ordinates) but it is constantly in action , ie it does not wait for mouse click whereas sprite.rotation = game.physics.arcade.moveToXY(sprite,x,y); would be nice if paired with game.input.onDown.add(moveBall, this);/ / update destination with world co-ords function moveBall(pointer) { x = pointer.Worldx; y = pointer.WorldY; } Any help at all would be great.