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