You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Make enum/constant binds 64-bit.
This commit is contained in:
@@ -62,7 +62,7 @@ GDScriptNativeClass::GDScriptNativeClass(const StringName &p_name) {
|
||||
|
||||
bool GDScriptNativeClass::_get(const StringName &p_name, Variant &r_ret) const {
|
||||
bool ok;
|
||||
int v = ClassDB::get_integer_constant(name, p_name, &ok);
|
||||
int64_t v = ClassDB::get_integer_constant(name, p_name, &ok);
|
||||
|
||||
if (ok) {
|
||||
r_ret = v;
|
||||
|
||||
Reference in New Issue
Block a user