Difference between revisions of "Custom movement control"
From Castle Wiki
(Created page with "drag, analog stick, slingshot, are the 3 deafult movement controls on castle.xyz, here is how to make more # The start of the code for movement it needs to constantly moving...") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
drag, analog stick, slingshot, are the 3 deafult movement controls on castle.xyz, here is how to make more | drag, analog stick, slingshot, are the 3 deafult movement controls on castle.xyz, here is how to make more (buttons) | ||
# The start of the code | # Left/right button, The start of the code | ||
for movement it needs to constantly moving, the simpliest option is '''WHEN THIS IS PRESSED''' | for movement it needs to constantly moving, the simpliest option is '''WHEN THIS IS PRESSED''' | ||
Line 7: | Line 7: | ||
Due to it constantly repeating code as long as it is pressed. | Due to it constantly repeating code as long as it is pressed. | ||
2. | 2. Moving | ||
First add '''TELL ACTOR WITH TAG #(charactertag)''' | |||
Then add '''MODIFY DYNAMIC MOTION PROPERTY VELOCITY X [N] (RELATIVE)''' | |||
Now that your left and right button is done, its time to add a up and down | |||
# Up/down button The start of the code | |||
Repeat code from Left and right but change '''VELOCITY X''' | |||
With '''''VELOCITY Y''''' |
Latest revision as of 05:12, 3 July 2022
drag, analog stick, slingshot, are the 3 deafult movement controls on castle.xyz, here is how to make more (buttons)
- Left/right button, The start of the code
for movement it needs to constantly moving, the simpliest option is WHEN THIS IS PRESSED
Due to it constantly repeating code as long as it is pressed.
2. Moving
First add TELL ACTOR WITH TAG #(charactertag)
Then add MODIFY DYNAMIC MOTION PROPERTY VELOCITY X [N] (RELATIVE)
Now that your left and right button is done, its time to add a up and down
- Up/down button The start of the code
Repeat code from Left and right but change VELOCITY X
With VELOCITY Y