Function GodotObject.callDeferred

Calls the method on the object during idle time. This method supports a variable number of arguments, so parameters are passed as a comma separated list. Example:

void callDeferred(VarArgs...) (
  in String method,
  VarArgs varArgs
);

call_deferred("set", "position", Vector2(42.0, 0.0))