UnityEditor.SessionState.SetBool C# (CSharp) Method

SetBool() private method

private SetBool ( string key, bool value ) : void
key string
value bool
return void
        internal static extern void SetBool(string key, bool value);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

示例#1
0
 public virtual void OnDisable()
 {
     SessionState.SetBool("ShowLightingEditor", this.m_ShowEditor);
     this.m_ShowAmbientBakeMode.valueChanged.RemoveAllListeners();
     this.m_ParentWindow = null;
 }
All Usage Examples Of UnityEditor.SessionState::SetBool