(handle: SceneNodeHandle, parent: SceneNodeHandle)
| 170 | * Set the parent of a scene node. Pass 0 for no parent (root node). |
| 171 | */ |
| 172 | export function setSceneNodeParent(handle: SceneNodeHandle, parent: SceneNodeHandle): void { |
| 173 | bloom_scene_set_parent(handle, parent); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Set the 4x4 transform matrix for a scene node. |
no test coverage detected