diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-21 14:24:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 14:24:14 +0200 |
commit | 40c360b8703449bb6a3299878600fab45abf9f86 (patch) | |
tree | 1bdb519fcf246bf82936ec0b189fa6ec5fb5bef8 /core/object | |
parent | b5f20a49a16d23e6f9f9f349087af5620ed64cd3 (diff) | |
parent | 5786516d4d6b517e6a28aec191f944aecf2f544d (diff) |
Merge pull request #62122 from reduz/implement-movie-writer
Implement a Movie Maker mode
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h index 8117783fae..02dd875acf 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -85,6 +85,7 @@ enum PropertyHint { PROPERTY_HINT_OBJECT_TOO_BIG, ///< object is too big to send PROPERTY_HINT_NODE_PATH_VALID_TYPES, PROPERTY_HINT_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog + PROPERTY_HINT_GLOBAL_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog PROPERTY_HINT_INT_IS_OBJECTID, PROPERTY_HINT_ARRAY_TYPE, PROPERTY_HINT_INT_IS_POINTER, |