mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #62122 from reduz/implement-movie-writer
Implement a Movie Maker mode
This commit is contained in:
commit
40c360b870
38 changed files with 2427 additions and 30 deletions
|
|
@ -388,6 +388,10 @@ bool OS::has_feature(const String &p_feature) {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (p_feature == "movie") {
|
||||
return _writing_movie;
|
||||
}
|
||||
|
||||
#ifdef DEBUG_ENABLED
|
||||
if (p_feature == "debug") {
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -58,6 +58,7 @@ class OS {
|
|||
bool _allow_layered = false;
|
||||
bool _stdout_enabled = true;
|
||||
bool _stderr_enabled = true;
|
||||
bool _writing_movie = false;
|
||||
|
||||
CompositeLogger *_logger = nullptr;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue