diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-10-31 19:26:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 19:26:11 +0000 |
commit | bebc98d4eab0ca9164282d9c0770914025751d24 (patch) | |
tree | 01f0912301ba267504666e4d9e21cffe41b51415 /gdextension/gdextension_interface.h | |
parent | 259c757ccea4c8e223713019ca5ab95788fcf92e (diff) | |
parent | 4667b71811d16169440c320dc490bbe074e4d01b (diff) | |
download | redot-cpp-bebc98d4eab0ca9164282d9c0770914025751d24.tar.gz |
Merge pull request #1 from Redot-Engine/rebrand
Rebrand godot-cpp to redot-cpp
Diffstat (limited to 'gdextension/gdextension_interface.h')
-rw-r--r-- | gdextension/gdextension_interface.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gdextension/gdextension_interface.h b/gdextension/gdextension_interface.h index 9f5ef72..2cb9e64 100644 --- a/gdextension/gdextension_interface.h +++ b/gdextension/gdextension_interface.h @@ -2,9 +2,11 @@ /* gdextension_interface.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -420,7 +422,9 @@ typedef enum { GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_UINT32, GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_UINT64, GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_FLOAT, - GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE + GDEXTENSION_METHOD_ARGUMENT_METADATA_REAL_IS_DOUBLE, + GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR16, + GDEXTENSION_METHOD_ARGUMENT_METADATA_INT_IS_CHAR32, } GDExtensionClassMethodArgumentMetadata; typedef void (*GDExtensionClassMethodCall)(void *method_userdata, GDExtensionClassInstancePtr p_instance, const GDExtensionConstVariantPtr *p_args, GDExtensionInt p_argument_count, GDExtensionVariantPtr r_return, GDExtensionCallError *r_error); @@ -1311,6 +1315,9 @@ typedef GDExtensionBool (*GDExtensionInterfaceVariantHasKey)(GDExtensionConstVar * * Gets the object instance ID from a variant of type GDEXTENSION_VARIANT_TYPE_OBJECT. * + * If the variant isn't of type GDEXTENSION_VARIANT_TYPE_OBJECT, then zero will be returned. + * The instance ID will be returned even if the object is no longer valid - use `object_get_instance_by_id()` to check if the object is still valid. + * * @param p_self A pointer to the Variant. * * @return The instance ID for the contained object. |