()
| 202 | } |
| 203 | |
| 204 | update_shadow() { |
| 205 | // TODO: we don't have this yet in scatter (inconsistent) |
| 206 | this.meshes.forEach((mesh) => { |
| 207 | mesh.castShadow = this.model.get("cast_shadow"); |
| 208 | mesh.receiveShadow = this.model.get("receive_shadow"); |
| 209 | }); |
| 210 | } |
| 211 | |
| 212 | remove_from_scene() { |
| 213 | this.meshes.forEach((mesh) => { |
no test coverage detected