little fixes for moveTo example and with event return data

This commit is contained in:
Hanusiak Piotr 2022-01-20 10:04:19 +01:00
parent bf6b9a7c83
commit b088e63290
3 changed files with 22 additions and 1 deletions

View file

@ -16,10 +16,19 @@
randomChainedMovementButton.addEventListener('click', async () => {
try {
WA.player.moveTo(100, 100, 10).then((result) => {
if (result.cancelled) {
return;
}
console.log(result);
WA.player.moveTo(500, 100, 20).then((result) => {
if (result.cancelled) {
return;
}
console.log(result);
WA.player.moveTo(500, 500, 10).then((result) => {
if (result.cancelled) {
return;
}
console.log(result);
});
});