Locomotion
Last updated
Last updated
Character Locomotion Base processes general locomotion data for current movement and rotation.
Character: Reference to the Character this locomotion is referred to. If it is none, the script will automatically find Character component in this game object and its parent.
Character Transform: Reference to the transform which the locomotion will be applied to. If it is none, the script will automatically set the Character transform.
Gravity: The direction and magnitude of gravity. If you want to disable gravity, check Base Data > Ignore Gravity below.
Base Data: Basic locomotion data including move speed, rotation speed, animation speed, root motion multiplier and ignore gravity.
Base Extra Data: Extra locomotion data related to acceleration and damp for ground and air.
This includes some useful locomotion runtime parameters which would be very helpful for debugging.
On Ground: Whether the character is on the ground.
Current Move Direction: Current pending character move direction from player input.
Current Rotate Direction: Current pending character rotate direction controlled by player input and aimer.
Current Movement: Current movement mostly based on player input and calculated with speed and acceleration. This movement is gradually slowing down influenced by Base Extra Data > Damp instead of resetting to zero every Fixed Update.
Extra Movement: Extra instant movement mostly added by root motion and modifiers. This movement is reset to zero every Fixed Update.
Locomotion Motor applies the processed locomotion data in Locomotion Base to the character. In other words, it is the motor that decides how the character moves in a scene.
Depending on different game types or special game design, different motors can be added to change character's locomotion.