pub trait SpatialNodeContainer {
    // Required method
    fn get_node_info(&self, index: SpatialNodeIndex) -> SpatialNodeInfo<'_>;
}
Expand description

Allows functions and methods to retrieve common information about a spatial node, whether during scene or frame building

Required Methods§

source

fn get_node_info(&self, index: SpatialNodeIndex) -> SpatialNodeInfo<'_>

Get the common information for a given spatial node

Implementors§