Animation.CrossFadefunction CrossFade (animation : String, fadeLength : float = 0.3F, mode : PlayMode = PlayMode.StopSameLayer) : voidDescriptionFades the animation with name animation in over a period of time seconds and fades other animations out. if mode is PlayMode.StopSameLayer, animations in the same layer as animation will be faded out while animation is faded in. if mode is PlayMode.StopAll, all animations will be faded out while animation is faded in. If the animation is not set to be looping it will be stopped and rewinded after playing.
JavaScript
// Fade the walk cycle in and fade all other animations in the same layer out. using UnityEngine; import UnityEngine
JavaScript
// Makes a character contains a Run and Idle animation using UnityEngine; import UnityEngine |
