callΒΆ

call calls a UniScript function. The function name can be passed as the first parameter.

ret = call(ssFuncName)
ret = call(ssFuncName, arg1, ..., argn)

Return Value

ret is the return value of the ssFuncName function.

Parameters

ssFuncName

ssFuncName is the name of the UniScript function.

arg1

arg1 is the first parameter of the function ssFuncName

Example

call("sin", 1)

id-727041