Click or drag to resize

Object.Callv Method

Calls the method on the object and returns the result. Contrarily to Call(String,Object[]), this method does not support a variable number of arguments but expects all parameters to be via a single Array.

callv("set", [ "position", Vector2(42.0, 0.0) ])

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public Object Callv(
	string method,
	Array argArray
)

Parameters

method
Type: System.String

[Missing <param name="method"/> documentation for "M:Godot.Object.Callv(System.String,Godot.Collections.Array)"]

argArray
Type: Godot.Collections.Array

[Missing <param name="argArray"/> documentation for "M:Godot.Object.Callv(System.String,Godot.Collections.Array)"]

Return Value

Type: Object

[Missing <returns> documentation for "M:Godot.Object.Callv(System.String,Godot.Collections.Array)"]

See Also