How do I get Callables from built_in types?

Callables only work for Objects. Signal, String, Array, Dictionary, Callable,… aren’t Objects but Variants

You’ll need to use an anonymous function (lambda function) like:

var signal_emit_callable = func(level): level_selected.emit(level)
1 Like