summaryrefslogtreecommitdiff
path: root/core/object.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-04-21 15:23:35 +0200
committerGitHub <noreply@github.com>2020-04-21 15:23:35 +0200
commit79f82bd74284a3a90177d6446449d2a69285130f (patch)
tree8b20a991315c19c23a83b37eed22ac6ec0d34597 /core/object.h
parent1061cf9f6634601d7c2b17b81f8f4699ee71d670 (diff)
parent5d4dc2d45caef77cdb52e365bc02f64d54046df5 (diff)
Merge pull request #38063 from reduz/implement-typed-arrays
Add ability to bind typed arrays to script API
Diffstat (limited to 'core/object.h')
-rw-r--r--core/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object.h b/core/object.h
index 1eaab5034e..b40aef2a42 100644
--- a/core/object.h
+++ b/core/object.h
@@ -91,6 +91,7 @@ enum PropertyHint {
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_INT_IS_OBJECTID,
+ PROPERTY_HINT_ARRAY_TYPE,
PROPERTY_HINT_MAX,
// When updating PropertyHint, also sync the hardcoded list in VisualScriptEditorVariableEdit
};