1234567891011121314151617181920 |
- using System;
- using UnityEngine;
- using UnityEngine.Playables;
- using UnityEngine.Timeline;
- [Serializable]
- public class LightControlClip : PlayableAsset, ITimelineClipAsset
- {
- public LightControlBehaviour template = new LightControlBehaviour ();
- public ClipCaps clipCaps
- {
- get { return ClipCaps.Blending; }
- }
- public override Playable CreatePlayable (PlayableGraph graph, GameObject owner)
- {
- var playable = ScriptPlayable<LightControlBehaviour>.Create (graph, template);
- return playable; }
- }
|