(handle: SceneNodeHandle, cast: boolean)
| 156 | * Set whether this node casts shadows. |
| 157 | */ |
| 158 | export function setSceneNodeCastShadow(handle: SceneNodeHandle, cast: boolean): void { |
| 159 | bloom_scene_set_cast_shadow(handle, cast ? 1 : 0); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Set whether this node receives shadows. |
no test coverage detected