//most likely object is not initialized yet, do not throw error.
}else{
ERR_PRINT("Error calling from signal '"+String(p_name)+"' to callable: "+Variant::get_callable_error_text(c.callable,args,argc,ce)+".");
ERR_PRINT("Error calling from signal '"+String(p_name)+"' to callable: "+Variant::get_callable_error_text(c.callable,args,argc+c.callable.get_bound_arguments_count(),ce)+".");
Calls the method represented by this [Callable]. Unlike [method call], this method expects all arguments to be contained inside the [param arguments] [Array].
Returns the total amount of arguments bound (or unbound) via successive [method bind] or [method unbind] calls. If the amount of arguments unbound is greater than the ones bound, this function returns a value less than zero.