您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
722 B
22 行
722 B
using UnityEngine;
|
|
using UnityEngine.Playables;
|
|
using UnityEngine.Timeline;
|
|
using UnityEngine.Rendering;
|
|
|
|
[TrackColor(0.5f, 0, 1)]
|
|
[TrackClipType(typeof(DOFPlayableAsset))]
|
|
[TrackBindingType(typeof(Volume))]
|
|
public class DOFTrack : TrackAsset
|
|
{
|
|
// override the type of mixer playable used by this track
|
|
public override Playable CreateTrackMixer(PlayableGraph graph, GameObject go, int inputCount)
|
|
{
|
|
foreach (var c in GetClips())
|
|
{
|
|
DOFPlayableAsset postprocessingPlayable = (DOFPlayableAsset)c.asset;
|
|
c.displayName = postprocessingPlayable.dofPlayable.focusDistance.ToString();
|
|
}
|
|
return ScriptPlayable<DOFPlayableMixer>.Create(graph, inputCount);
|
|
|
|
}
|
|
}
|