[]
Represents an object manager that controls the lifetime of other objects.
new ObjectManager(): ObjectManager;
Initializes a new instance of ObjectManager.
ObjectManager
get id(): number;
Gets the object manager ID.
number
get stacked(): boolean;
Indicates whether the object manager was created with the pushObjectManager method or the withObjectManager decorator.
boolean
checkAlive(): void;
Checks if the ObjectManager instance has not yet been disposed.
void
dispose(): void;
Disposes the ObjectManager instance.
void