| 74 | } |
| 75 | |
| 76 | void ScriptBatch::finish() { |
| 77 | if (finished_) { |
| 78 | return; |
| 79 | } |
| 80 | simulation_.finishAtomBatch(); |
| 81 | finished_ = true; |
| 82 | } |
| 83 | |
| 84 | SpawnOptions ScriptBatch::parseSpawnOptions(const sol::object& object) const { |
| 85 | const glm::vec3 worldSize = simulation_.world().getWorldSize(); |
no test coverage detected