From 6141ce2cb8ae54965190257a1ffd6a6abd02aaea Mon Sep 17 00:00:00 2001 From: Brian Semrau Date: Mon, 27 Sep 2021 12:23:57 -0400 Subject: GDScript Don't double-reference Refs returned from native function --- core/variant/variant_internal.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'core/variant') diff --git a/core/variant/variant_internal.h b/core/variant/variant_internal.h index 40c8a1bfde..ad095c27e7 100644 --- a/core/variant/variant_internal.h +++ b/core/variant/variant_internal.h @@ -300,6 +300,13 @@ public: v->_get_obj().id = ObjectID(); } + static void update_object_id(Variant *v) { + const Object *o = v->_get_obj().obj; + if (o) { + v->_get_obj().id = o->get_instance_id(); + } + } + _FORCE_INLINE_ static void *get_opaque_pointer(Variant *v) { switch (v->type) { case Variant::NIL: -- cgit v1.2.3