您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
196 行
9.3 KiB
196 行
9.3 KiB
using System;
|
|
using UnityEditor.AnimatedValues;
|
|
using UnityEditor.IMGUI.Controls;
|
|
using UnityEditorInternal;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
using UnityEngine.Experimental.Rendering;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEditor.Experimental.Rendering
|
|
{
|
|
partial class HDReflectionProbeEditor
|
|
{
|
|
internal class SerializedReflectionProbe
|
|
{
|
|
internal ReflectionProbe target;
|
|
internal HDAdditionalReflectionData targetData;
|
|
|
|
internal SerializedObject so;
|
|
|
|
internal SerializedProperty mode;
|
|
internal SerializedProperty renderDynamicObjects;
|
|
internal SerializedProperty customBakedTexture;
|
|
internal SerializedProperty refreshMode;
|
|
internal SerializedProperty timeSlicingMode;
|
|
internal SerializedProperty intensityMultiplier;
|
|
internal SerializedProperty legacyBlendDistance;
|
|
internal SerializedProperty boxSize;
|
|
internal SerializedProperty boxOffset;
|
|
internal SerializedProperty resolution;
|
|
internal SerializedProperty shadowDistance;
|
|
internal SerializedProperty cullingMask;
|
|
internal SerializedProperty useOcclusionCulling;
|
|
internal SerializedProperty nearClip;
|
|
internal SerializedProperty farClip;
|
|
internal SerializedProperty boxProjection;
|
|
|
|
internal SerializedProperty influenceShape;
|
|
internal SerializedProperty influenceSphereRadius;
|
|
internal SerializedProperty useSeparateProjectionVolume;
|
|
internal SerializedProperty boxReprojectionVolumeSize;
|
|
internal SerializedProperty boxReprojectionVolumeCenter;
|
|
internal SerializedProperty sphereReprojectionVolumeRadius;
|
|
internal SerializedProperty blendDistancePositive;
|
|
internal SerializedProperty blendDistanceNegative;
|
|
internal SerializedProperty blendNormalDistancePositive;
|
|
internal SerializedProperty blendNormalDistanceNegative;
|
|
internal SerializedProperty boxSideFadePositive;
|
|
internal SerializedProperty boxSideFadeNegative;
|
|
internal SerializedProperty dimmer;
|
|
|
|
public SerializedReflectionProbe(SerializedObject so, SerializedObject addso)
|
|
{
|
|
this.so = so;
|
|
target = (ReflectionProbe)so.targetObject;
|
|
targetData = target.GetComponent<HDAdditionalReflectionData>();
|
|
|
|
mode = so.FindProperty("m_Mode");
|
|
customBakedTexture = so.FindProperty("m_CustomBakedTexture");
|
|
renderDynamicObjects = so.FindProperty("m_RenderDynamicObjects");
|
|
refreshMode = so.FindProperty("m_RefreshMode");
|
|
timeSlicingMode = so.FindProperty("m_TimeSlicingMode");
|
|
intensityMultiplier = so.FindProperty("m_IntensityMultiplier");
|
|
boxSize = so.FindProperty("m_BoxSize");
|
|
boxOffset = so.FindProperty("m_BoxOffset");
|
|
resolution = so.FindProperty("m_Resolution");
|
|
shadowDistance = so.FindProperty("m_ShadowDistance");
|
|
cullingMask = so.FindProperty("m_CullingMask");
|
|
useOcclusionCulling = so.FindProperty("m_UseOcclusionCulling");
|
|
nearClip = so.FindProperty("m_NearClip");
|
|
farClip = so.FindProperty("m_FarClip");
|
|
boxProjection = so.FindProperty("m_BoxProjection");
|
|
legacyBlendDistance = so.FindProperty("m_BlendDistance");
|
|
|
|
influenceShape = addso.Find((HDAdditionalReflectionData d) => d.influenceShape);
|
|
influenceSphereRadius = addso.Find((HDAdditionalReflectionData d) => d.influenceSphereRadius);
|
|
useSeparateProjectionVolume = addso.Find((HDAdditionalReflectionData d) => d.useSeparateProjectionVolume);
|
|
boxReprojectionVolumeSize = addso.Find((HDAdditionalReflectionData d) => d.boxReprojectionVolumeSize);
|
|
boxReprojectionVolumeCenter = addso.Find((HDAdditionalReflectionData d) => d.boxReprojectionVolumeCenter);
|
|
sphereReprojectionVolumeRadius = addso.Find((HDAdditionalReflectionData d) => d.sphereReprojectionVolumeRadius);
|
|
dimmer = addso.Find((HDAdditionalReflectionData d) => d.dimmer);
|
|
blendDistancePositive = addso.Find((HDAdditionalReflectionData d) => d.blendDistancePositive);
|
|
blendDistanceNegative = addso.Find((HDAdditionalReflectionData d) => d.blendDistanceNegative);
|
|
blendNormalDistancePositive = addso.Find((HDAdditionalReflectionData d) => d.blendNormalDistancePositive);
|
|
blendNormalDistanceNegative = addso.Find((HDAdditionalReflectionData d) => d.blendNormalDistanceNegative);
|
|
boxSideFadePositive = addso.Find((HDAdditionalReflectionData d) => d.boxSideFadePositive);
|
|
boxSideFadeNegative = addso.Find((HDAdditionalReflectionData d) => d.boxSideFadeNegative);
|
|
}
|
|
}
|
|
|
|
[Flags]
|
|
internal enum Operation
|
|
{
|
|
None = 0,
|
|
FitVolumeToSurroundings = 1 << 0
|
|
}
|
|
|
|
internal class UIState
|
|
{
|
|
AnimBool[] m_ModeSettingsDisplays = new AnimBool[Enum.GetValues(typeof(ReflectionProbeMode)).Length];
|
|
AnimBool[] m_InfluenceShapeDisplays = new AnimBool[Enum.GetValues(typeof(ReflectionInfluenceShape)).Length];
|
|
|
|
Editor owner { get; set; }
|
|
Operation operations { get; set; }
|
|
public AnimBool useSeparateProjectionVolumeDisplay { get; private set; }
|
|
public bool HasOperation(Operation op) { return (operations & op) == op; }
|
|
public void ClearOperation(Operation op) { operations &= ~op; }
|
|
public void AddOperation(Operation op) { operations |= op; }
|
|
|
|
public BoxBoundsHandle boxInfluenceHandle = new BoxBoundsHandle();
|
|
public BoxBoundsHandle boxProjectionHandle = new BoxBoundsHandle();
|
|
public BoxBoundsHandle boxBlendHandle = new BoxBoundsHandle();
|
|
public BoxBoundsHandle boxBlendNormalHandle = new BoxBoundsHandle();
|
|
public SphereBoundsHandle sphereInfluenceHandle = new SphereBoundsHandle();
|
|
public SphereBoundsHandle sphereProjectionHandle = new SphereBoundsHandle();
|
|
public SphereBoundsHandle sphereBlendHandle = new SphereBoundsHandle();
|
|
public SphereBoundsHandle sphereBlendNormalHandle = new SphereBoundsHandle();
|
|
public Matrix4x4 oldLocalSpace = Matrix4x4.identity;
|
|
|
|
public bool HasAndClearOperation(Operation op)
|
|
{
|
|
var has = HasOperation(op);
|
|
ClearOperation(op);
|
|
return has;
|
|
}
|
|
|
|
public bool sceneViewEditing
|
|
{
|
|
get { return IsReflectionProbeEditMode(EditMode.editMode) && EditMode.IsOwner(owner); }
|
|
}
|
|
|
|
internal UIState()
|
|
{
|
|
for (var i = 0; i < m_ModeSettingsDisplays.Length; i++)
|
|
m_ModeSettingsDisplays[i] = new AnimBool();
|
|
for (var i = 0; i < m_InfluenceShapeDisplays.Length; i++)
|
|
m_InfluenceShapeDisplays[i] = new AnimBool();
|
|
useSeparateProjectionVolumeDisplay = new AnimBool();
|
|
}
|
|
|
|
internal void Reset(
|
|
Editor owner,
|
|
UnityAction repaint,
|
|
SerializedReflectionProbe p)
|
|
{
|
|
this.owner = owner;
|
|
operations = 0;
|
|
|
|
for (var i = 0; i < m_ModeSettingsDisplays.Length; i++)
|
|
{
|
|
m_ModeSettingsDisplays[i].valueChanged.RemoveAllListeners();
|
|
m_ModeSettingsDisplays[i].valueChanged.AddListener(repaint);
|
|
m_ModeSettingsDisplays[i].value = p.mode.intValue == i;
|
|
}
|
|
|
|
for (var i = 0; i < m_InfluenceShapeDisplays.Length; i++)
|
|
{
|
|
m_InfluenceShapeDisplays[i].valueChanged.RemoveAllListeners();
|
|
m_InfluenceShapeDisplays[i].valueChanged.AddListener(repaint);
|
|
m_InfluenceShapeDisplays[i].value = p.influenceShape.intValue == i;
|
|
}
|
|
|
|
useSeparateProjectionVolumeDisplay.valueChanged.RemoveAllListeners();
|
|
useSeparateProjectionVolumeDisplay.valueChanged.AddListener(repaint);
|
|
useSeparateProjectionVolumeDisplay.value = p.useSeparateProjectionVolume.boolValue;
|
|
}
|
|
|
|
public float GetModeFaded(ReflectionProbeMode mode)
|
|
{
|
|
return m_ModeSettingsDisplays[(int)mode].faded;
|
|
}
|
|
|
|
public void SetModeTarget(int value)
|
|
{
|
|
for (var i = 0; i < m_ModeSettingsDisplays.Length; i++)
|
|
m_ModeSettingsDisplays[i].target = i == value;
|
|
}
|
|
|
|
public float GetShapeFaded(ReflectionInfluenceShape value)
|
|
{
|
|
return m_InfluenceShapeDisplays[(int)value].faded;
|
|
}
|
|
|
|
public void SetShapeTarget(int value)
|
|
{
|
|
for (var i = 0; i < m_InfluenceShapeDisplays.Length; i++)
|
|
m_InfluenceShapeDisplays[i].target = i == value;
|
|
}
|
|
|
|
internal void UpdateOldLocalSpace(ReflectionProbe target)
|
|
{
|
|
oldLocalSpace = GetLocalSpace(target);
|
|
}
|
|
}
|
|
}
|
|
}
|