| 623 | } |
| 624 | |
| 625 | void WorldInstance::initializeScriptEngineForZenWorld(const std::string& worldName, bool firstStart) |
| 626 | { |
| 627 | if (!worldName.empty()) |
| 628 | { |
| 629 | LogInfo() << "Initializing scripts for world: " << worldName; |
| 630 | getScriptEngine().initForWorld(worldName, firstStart); |
| 631 | } |
| 632 | LogInfo() << "Script-initialization done!"; |
| 633 | } |
| 634 | |
| 635 | Handle::EntityHandle WorldInstance::addEntity(Components::ComponentMask components) |
| 636 | { |
nothing calls this directly
no test coverage detected