| 396 | } |
| 397 | |
| 398 | void Engine::get_singletons(List<Singleton> *p_singletons) { |
| 399 | for (const Singleton &E : singletons) { |
| 400 | #ifdef TOOLS_ENABLED |
| 401 | if (!is_editor_hint() && E.editor_only) { |
| 402 | continue; |
| 403 | } |
| 404 | #endif |
| 405 | |
| 406 | p_singletons->push_back(E); |
| 407 | } |
| 408 | } |
| 409 | |
| 410 | String Engine::get_write_movie_path() const { |
| 411 | return write_movie_path; |
no test coverage detected