您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
647 B
22 行
647 B
using UnityEngine.Experimental.Rendering.HDPipeline;
|
|
|
|
namespace UnityEditor.Experimental.Rendering.HDPipeline
|
|
{
|
|
public class SerializedProxyVolume
|
|
{
|
|
public SerializedProperty root;
|
|
|
|
public SerializedProperty shape;
|
|
public SerializedProperty boxSize;
|
|
public SerializedProperty sphereRadius;
|
|
|
|
public SerializedProxyVolume(SerializedProperty root)
|
|
{
|
|
this.root = root;
|
|
|
|
shape = root.Find((ProxyVolume p) => p.shape);
|
|
boxSize = root.Find((ProxyVolume p) => p.boxSize);
|
|
sphereRadius = root.Find((ProxyVolume p) => p.sphereRadius);
|
|
}
|
|
}
|
|
}
|