getNode method

SceneNode? getNode(
  1. NodeId id
)

Returns the first node with id, or null if it does not exist.

Implementation

SceneNode? getNode(NodeId id) => findNode(id)?.node;