Keyboardcontrol.wickobj Missing?

I want to make something in wick editor but keyboardcontrol.wickobj is missing. Can I get any help? Thanks!

1 Like

idk if this will help but here’s the code

var speed = 7;

if(isKeyDown(‘left’)) {
this.x -= speed;
}
if(isKeyDown(‘right’)) {
this.x += speed;
}
if(isKeyDown(‘up’)) {
this.y -= speed;
}
if(isKeyDown(‘down’)) {
this.y += speed;
}

2 Likes