我们创建了 Fontainebleau 演示来说明摄影photogrammetry流程和 LayeredLit 着色器的使用。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

24 行
764 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Playables;
using UnityEngine.Timeline;
using UnityEngine.Rendering.PostProcessing;
[TrackColor(0.5f, 0, 1)]
[TrackClipType(typeof(DOFPlayableAsset))]
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);
}
}