(handle: SceneNodeHandle, receive: boolean)
| 163 | * Set whether this node receives shadows. |
| 164 | */ |
| 165 | export function setSceneNodeReceiveShadow(handle: SceneNodeHandle, receive: boolean): void { |
| 166 | bloom_scene_set_receive_shadow(handle, receive ? 1 : 0); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Set the parent of a scene node. Pass 0 for no parent (root node). |
no test coverage detected