summaryrefslogtreecommitdiff
path: root/core/core_bind.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-06-17 21:05:51 +0200
committerGitHub <noreply@github.com>2022-06-17 21:05:51 +0200
commitdd93ae63fa482a5955cae874300648a6bf4729fb (patch)
tree4075d2473c32b1d65d7df868cf046a86e93c8a39 /core/core_bind.h
parentd2be5416ef2f759df7b89c4a22b4d36a185feb25 (diff)
parent860e24683fd4ee627a3a950418dbd2b4cc6fe78b (diff)
Merge pull request #61991 from bruvzg/property_shortcut
Make enum/constant binds 64-bit.
Diffstat (limited to 'core/core_bind.h')
-rw-r--r--core/core_bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_bind.h b/core/core_bind.h
index e4d15d5c9d..c2098b1b59 100644
--- a/core/core_bind.h
+++ b/core/core_bind.h
@@ -604,7 +604,7 @@ public:
PackedStringArray get_integer_constant_list(const StringName &p_class, bool p_no_inheritance = false) const;
bool has_integer_constant(const StringName &p_class, const StringName &p_name) const;
- int get_integer_constant(const StringName &p_class, const StringName &p_name) const;
+ int64_t get_integer_constant(const StringName &p_class, const StringName &p_name) const;
bool has_enum(const StringName &p_class, const StringName &p_name, bool p_no_inheritance = false) const;
PackedStringArray get_enum_list(const StringName &p_class, bool p_no_inheritance = false) const;