Enum in Yarn
Inherits from System.Enum
System.Enum
Represents different kinds of variables that can be fetched from a Dialogue using TryGetValue<T>(string,T?) .
public enum VariableKind { Unknown, Stored, Smart }
Smart
The variable's value is computed at run-time, and is not persisted to disk.
Stored
The variable's value is stored in memory, and may be persisted to disk.
Unknown
The kind of the variable cannot be determined. It may not be known to the system.
Last updated 8 months ago
Was this helpful?