little fixes for moveTo example and with event return data
This commit is contained in:
parent
bf6b9a7c83
commit
b088e63290
3 changed files with 22 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue