| 110 | void ScriptAPI::clear() { simulation_.clear(); } |
| 111 | |
| 112 | void ScriptAPI::set_world_title(const std::string& title) { simulation_.setWorldTitle(title); } |
| 113 | |
| 114 | void ScriptAPI::set_box(float x, float y, sol::variadic_args args) { |
| 115 | const float z = args.size() >= 1 ? static_cast<float>(args.get<float>(0)) : 6.0f; |
nothing calls this directly
no test coverage detected