IsometricNode
Base node for the isometric scene graph. This is the fundamental building block that Compose Runtime manages. Open for extension to support custom node types via low-level ComposeNode primitives.
Inheritors
Properties
Thread-safe snapshot of children for rendering and traversal. Updated atomically after Applier mutations complete (copy-on-write).
Parent node in the tree
Optional per-node render options override. When non-null, overrides the inherited render options for this node and its subtree. When null (default), inherits from the parent context.
Functions
Render this node and its children into the given accumulator list. Eliminates intermediate list allocations compared to a returning render() method.
Update the snapshot from the current mutable children list. Called by the Applier after structural mutations.