Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SessionState

SessionState is a Key-Value Store intended for storing and retrieving Editor session state that should survive assembly reloading.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Class
  • Namespace: UnityEditor
  • Assembly: UnityEditor
public class SessionState

Remarks

The state information stored in SessionState is cleared when Unity exits. For storing state information that should be persistent across Unity Editor sessions use EditorPrefs.

Static Methods

Method

Description

EraseBoolErase a Boolean entry in the key-value store.
EraseFloatErase a Float entry in the key-value store.
EraseIntErase an Integer entry in the key-value store.
EraseIntArrayErase an Integer array entry in the key-value store.
EraseStringErase a String entry in the key-value store.
EraseVector3Erase a Vector3 entry in the key-value store.
GetBoolRetrieve a Boolean value.
GetFloatRetrieve a Float value.
GetIntRetrieve an Integer value.
GetIntArrayRetrieve an Integer array.
GetStringRetrieve a String value.
GetVector3Retrieve a Vector3.
SetBoolStore a Boolean value.
SetFloatStore a Float value.
SetIntStore an Integer value.
SetIntArrayStore an Integer array.
SetStringStore a String value.
SetVector3Store a Vector3.