UnityEditor.OcclusionPortalInspector.OnEnable C# (CSharp) Method

OnEnable() public method

public OnEnable ( ) : void
return void
        public void OnEnable()
        {
            this.m_Object = new SerializedObject(base.targets);
            this.m_Center = this.m_Object.FindProperty("m_Center");
            this.m_Size = this.m_Object.FindProperty("m_Size");
            this.m_BoxEditor.OnEnable();
            this.m_BoxEditor.SetAlwaysDisplayHandles(true);
        }
OcclusionPortalInspector