mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
6bc16660cc
The Godot API (gdnative_interface.h) allows methods to be registered on extension classes with `classdb_register_extension_class_method` a `GDNativeExtensionClassMethodInfo` can be provided to this function along with a `get_argument_info_func` which according to the comment indicates that argument names should be definable here. Unfortunately, setting the name field in the `GDNativePropertyInfo` struct has no effect on the editor documentation, which continues to display "_unnamed_arg" for each argument. I discovered that `get_argument_info` is responsible for this as it always overrides the `info.name`. I've added an if condition that will only override the name when it is empty. I've tested this with my GDExtension module and I can confirm that with this commit, the argument name shows up in the builtin docs. eg. in Lookup Symbol. |
||
---|---|---|
.. | ||
callable_method_pointer.cpp | ||
callable_method_pointer.h | ||
class_db.cpp | ||
class_db.h | ||
make_virtuals.py | ||
message_queue.cpp | ||
message_queue.h | ||
method_bind.cpp | ||
method_bind.h | ||
object_id.h | ||
object.cpp | ||
object.h | ||
ref_counted.cpp | ||
ref_counted.h | ||
script_language_extension.cpp | ||
script_language_extension.h | ||
script_language.cpp | ||
script_language.h | ||
SCsub | ||
undo_redo.cpp | ||
undo_redo.h | ||
worker_thread_pool.cpp | ||
worker_thread_pool.h |