-
Notifications
You must be signed in to change notification settings - Fork 0
API Host ObjectFlags
Liu.Yandong.Hanks edited this page Aug 21, 2026
·
3 revisions
Flags controlling ScriptObject mutability.
Namespace: AuroraScript.Runtime.Types. Kind: enum.
Back to .NET Host API Reference
Flags controlling ScriptObject mutability.
Sets no flags.
var value = ObjectFlags.None;The object is frozen and can no longer be modified.
var value = ObjectFlags.Frozen;The object is immutable, typically for built-in constants.
var value = ObjectFlags.Immutable;AuroraScript.JIT 4.0.0 · Documentation Home · Repository · MIT License