đBehaviors
Lists all behaviors on the object
Last updated
Lists all behaviors on the object
Last updated
A behavior is a component that derives from the TimeflowBehavior base class. This is generated on setup and automatically updates any time behaviors are added or removed.
Click the watch icon next to each behavior to toggle on/off the behavior's enabled state.
Behavior Order The order of behaviors listed is based on the component order on the game object. To change the order of components, right-click on the component name in the inspector window and use the built-in menu options Move Up and Move Down. Note that the behavior order doesn't matter as much since processing order is primarily determined by the channel order as described below.
If the game object has either a Unity Animator or legacy Animation component on it, an additional option is available to update it like a behavior. This means that the animation is automatically played in sync with the object track.
Animator Playback Skipping
Note that Animator is primarily designed to work in runtime and expects time to move in a linear forward direction. When working in edit mode, Animator components may not always update as expected, especially when skipping around in time. It works best to rewind and allow it to play uninterrupted in order for the Animator component to properly process its animation blend trees. Enter play mode to see final results.
For more advanced features to leverage Unity's built-in animation system, see Animation Clips and Animator Blend Trees.