| 1080 | } |
| 1081 | |
| 1082 | void WorldInstance::exportControllers(Logic::Controller* logicController, Logic::VisualController* visualController, json& j) |
| 1083 | { |
| 1084 | if (logicController && logicController->shouldExport()) |
| 1085 | logicController->exportObject(j["logic"]); |
| 1086 | if (visualController && visualController->shouldExport()) |
| 1087 | visualController->exportObject(j["visual"]); |
| 1088 | } |
| 1089 | |
| 1090 | void WorldInstance::takeControlOver(Handle::EntityHandle entityHandle) |
| 1091 | { |
nothing calls this directly
no test coverage detected