 guest_writer Guest |
Quote
|
2024-12-23 13:28:48 |
|
JIC Hello!
how to change the button in your behavior in the code where W there is not even a key code, how change it to up down left right.
|
 guest_guest Guest |
Quote
|
2024-12-23 14:35:49 |
|
I have never seen a car controller by JIC.. LOL...
|
 guest_writer Guest |
Quote
|
2024-12-25 11:48:03 |
|
Damn, LOL it really was the sm controller, apparently my insomnia is affecting my attentiveness
|
 andgameplay Registered User |
Quote
|
2024-12-27 16:32:21 |
|
Man, I think is possible to change the keys in the script "sm car controller", but I don't know very well how to chance the AWSD to Arrows in the script, maybe somebody here in the orum can help, but I know is simple to do this!
|
 smnmhmdy Registered User |
Quote
|
2024-12-28 17:28:07 |
|
You have to search for Key.char["W"] in the source and replace all of its occurrences with Key.code[38] which is the keycode for arrow up, and repeat the process for every other key you might want to replace.
You can look up the keycodes from sites like https://www.toptal.com/developer...
|