hello im gonna post here asses you can copy and paste in wick editor to make you characters move around
walking (paste this in keydown) yes you can use some built in assets in the editor
but you can edit theese
if (key=== “up”) {
this.y -=10;
this.rotation = 0;
}if (key=== “down”) {
this.y +=10;
this.rotation = 180;
}if (key=== “left”) {
this.x -=10;
this.rotation = -90;
}if (key=== “right”) {
this.x +=10;
this.rotation = 90;
}