| 619 | } |
| 620 | |
| 621 | LightId RenderWorld::light_create(UnitId unit, const LightDesc &ld) |
| 622 | { |
| 623 | u32 unit_index = 0; |
| 624 | _light_manager.create_instances(&ld, 1, &unit, &unit_index); |
| 625 | return light_instance(unit); |
| 626 | } |
| 627 | |
| 628 | void RenderWorld::light_destroy(LightId light) |
| 629 | { |
no test coverage detected