-
-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Labels
Description
There are default_args
, num_default_args
in godot_signal
and default_value
in godot_signal_argument
.
Based on source code for godot_nativescript_register_signal
(link to master, there are no changes to relevant part in question since third version) seems like default_args
are not used. Instead a number of num_default_args
default_value
s is collected from the start of args for use as defaults.
So seems like either default_args
or default_value
should be removed.
It seems wrong that default values are collected from the start and not the end of args
.
And usage
property in godot_signal_argument
seems meaningless (it is absent from godot_method_arg
for example).
gilzoide and endritdev1