Merge pull request #62122 from reduz/implement-movie-writer

Implement a Movie Maker mode
This commit is contained in:
Rémi Verschelde 2022-06-21 14:24:14 +02:00 committed by GitHub
commit 40c360b870
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 2427 additions and 30 deletions

View file

@ -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;

View file

@ -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;