前言
有关Playable的介绍,官方有篇中文的文章,大家可以优先看一下,这里就不过多描述了。
文章链接:https://connect.unity.com/p/playable-api-ding-zhi-ni-de-dong-hua-xi-tong
官方Demo:https://github.com/Unity-Technologies/SimpleAnimation
Playables API:https://docs.unity3d.com/Manual/Playables.html
准备
由于是动画系统嘛,所以肯定要有动画。我们先在场景中创建一个Cube,然后选中Cube在Animation面板中为其创建几个简单动画即可(当然了,有现成资源的小伙伴可以跳过这步了),Demo中我创建了三个名为Jump,Rotate,Scale的Animation文件。同时由于刚刚Create Animation的操作,Unity会在我们的Cube上自动添加Animator组件,并且关联了一个Animator的Controller文件。Animator组件需要保留(驱动Playable Graph的实际上依然是Animator组件),但是Controller我们暂时用不到,先删除它。
同时Unity提供了一个查看Playable结构的工具:PlayableGraph Visualizer,我们打开Package Manager,在Advanced中选中Show Preview Packages,然后找到PlayableGraph Visualizer,下载它。下载好后可以在Window-Analysis-PlayaleGraph Visualizer打开它。
AnimationPlayable
接下来自然是要利用Playable使我们的Cube播放动画了,我们先创建一个脚本组件(PlayableTest)挂载在Cube上。
我们先创建几个AnimationClip变量用于关联我们的Animation文件
public AnimationClip jumpAnimationClip;
public AnimationClip rotateAnimationClip;
public AnimationClip scaleAnimationClip;
AnimationPlayableOutput与AnimationClipPlayable
接下里我们来看看一个最简单的AnimationPlayable的实现
PlayableGraph m_graph;
void Start()
{
m_graph = PlayableGraph.Create("TestPlayableGraph");
var animationOutputPlayable = AnimationPlayableOutput.Create(m_graph, "AnimationOutput", GetComponent<Animator>());
var jumpAnimationClipPlayable = AnimationClipPlayable.Create(m_graph, jumpAnimationClip);
//AnimationPlayableOutput只有一个输入口,所以port为0
animationOutputPlayable.SetSourcePlayable(jumpAnimationClipPlayable, 0);
m_graph.Play();
}
void OnDisable()
{
// 销毁graph中所有的Playables和PlayableOutputs
m_graph.Destroy();
}
PlayableGraph类似于一个Playable的容器,我们往里面添加了一个用做动画输出的AnimationPlayableOutput和一个关联动画的AnimationClipPlayable,并用SetSourcePlayable将其关联起来(一个PlayableOutput只能有一个SourcePlayable)。
运行后,就可以看见我们的Cube播放了我们设置的Jump动画,同时查看PlayaleGraph Visualizer来更直观的了解,如图: