|
|
|
|
|
|
[SerializeField] |
|
|
|
Vector3 m_CaptureLocalPosition; |
|
|
|
[SerializeField] |
|
|
|
[Range(0.0f, 1.0f)] |
|
|
|
float m_Weight = 1.0f; |
|
|
|
[SerializeField] |
|
|
|
ReflectionProbeMode m_Mode = ReflectionProbeMode.Baked; |
|
|
|
[SerializeField] |
|
|
|
ReflectionProbeRefreshMode m_RefreshMode = ReflectionProbeRefreshMode.OnAwake; |
|
|
|
|
|
|
} |
|
|
|
public Bounds bounds { get { return m_InfluenceVolume.GetBoundsAt(transform); } } |
|
|
|
public Vector3 captureLocalPosition { get { return m_CaptureLocalPosition; } set { m_CaptureLocalPosition = value; } } |
|
|
|
public float weight { get { return m_Weight; } } |
|
|
|
public ReflectionProbeMode mode { get { return m_Mode; } } |
|
|
|
public Matrix4x4 influenceToWorld |
|
|
|
{ |
|
|
|