Method Create
Create(int)
Creates an argument payload that stores an integer value.
public static Args Create(int v)
Parameters
Returns
Create(float)
Creates an argument payload that stores a floating-point value.
public static Args Create(float v)
Parameters
vfloatThe value to place in floatValue for the associated argument key.
Returns
- Args
A new Args instance with floatValue initialized.
Create(Vector4)
Creates an argument payload that stores a vector value.
public static Args Create(Vector4 v)
Parameters
vVector4The value to place in vectorValue for the associated argument key.
Returns
- Args
A new Args instance with vectorValue initialized.
Create(bool)
Creates an argument payload that stores a boolean flag.
public static Args Create(bool v)