Table of Contents

Method Create

Namespace
Pinwheel.Vista.Graph
Assembly
Pinwheel.Vista.Runtime.dll

Create(int)

Creates an argument payload that stores an integer value.

public static Args Create(int v)

Parameters

v int

The value to place in intValue for the associated argument key.

Returns

Args

A new Args instance with intValue initialized.

Create(float)

Creates an argument payload that stores a floating-point value.

public static Args Create(float v)

Parameters

v float

The 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

v Vector4

The 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)

Parameters

v bool

The value to place in boolValue for the associated argument key.

Returns

Args

A new Args instance with boolValue initialized.