UnityEditor.LightProbeProxyVolumeEditor.DoBoxEditing C# (CSharp) Method

DoBoxEditing() private method

private DoBoxEditing ( ) : void
return void
        private void DoBoxEditing()
        {
            LightProbeProxyVolume target = (LightProbeProxyVolume) base.target;
            Vector3 sizeCustom = target.sizeCustom;
            Vector3 originCustom = target.originCustom;
            if (this.m_BoxEditor.OnSceneGUI(target.transform.localToWorldMatrix, kGizmoLightProbeProxyVolumeColor, kGizmoLightProbeProxyVolumeHandleColor, true, ref originCustom, ref sizeCustom))
            {
                Undo.RecordObject(target, "Modified Light Probe Proxy Volume AABB");
                Vector3 vector3 = originCustom;
                target.sizeCustom = sizeCustom;
                target.originCustom = vector3;
                EditorUtility.SetDirty(base.target);
            }
        }