您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
522 B
20 行
522 B
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.Playables;
|
|
using UnityEngine.Timeline;
|
|
|
|
[Serializable]
|
|
public class CommandClip : PlayableAsset, ITimelineClipAsset
|
|
{
|
|
public CommandBehaviour template = new CommandBehaviour ();
|
|
|
|
public ClipCaps clipCaps
|
|
{
|
|
get { return ClipCaps.Blending; }
|
|
}
|
|
|
|
public override Playable CreatePlayable (PlayableGraph graph, GameObject owner)
|
|
{
|
|
var playable = ScriptPlayable<CommandBehaviour>.Create (graph, template);
|
|
return playable; }
|
|
}
|