Smooth Movement Tutorial

i got forums because i needed help on skiller catcher and post projects here because this has a lot of members so I made a tutorial how to make linear moving

i think if you want to make linear/smooth movement its simple

in character script default script put this
move = 0 // this will make the linear movement
then make the key down script put

if (key==="a"||key==="left") {
this.move -= 1
}
if (key==="d"||key==="right") {
this.move += 1
}

after in the update script put

this.x += move

ask me if you need a .wick file if its hard

1 Like