mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 17:33:33 +00:00
ObjectID converted to a structure, fixes many bugs where used incorrectly as 32 bits.
This commit is contained in:
parent
4aa31a2851
commit
cf8c679a23
89 changed files with 337 additions and 287 deletions
|
@ -1374,7 +1374,7 @@ void GDScriptFunctions::call(Function p_func, const Variant **p_args, int p_arg_
|
|||
break;
|
||||
}
|
||||
|
||||
uint32_t id = *p_args[0];
|
||||
ObjectID id = *p_args[0];
|
||||
r_ret = ObjectDB::get_instance(id);
|
||||
|
||||
} break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue