Vector3 GetVector( Sandbox.StringToken& name, Vector3& defaultValue )

book_4_sparkGenerated
code_blocksInput

Description

The GetVector method retrieves a Vector3 value associated with a specified StringToken from the RenderAttributes collection. If the specified token does not exist, it returns a default value provided by the caller.

Usage

To use the GetVector method, you need to have an instance of RenderAttributes. You can then call this method by passing a reference to a StringToken that identifies the attribute you want to retrieve, along with a reference to a Vector3 that represents the default value to return if the attribute is not found.

Example

RenderAttributes renderAttributes = new RenderAttributes();
StringToken token = new StringToken("position");
Vector3 defaultPosition = new Vector3(0, 0, 0);

Vector3 position = renderAttributes.GetVector(ref token, ref defaultPosition);

// Use the retrieved position
// For example, setting the position of a game object
GameObject myObject = new GameObject();
myObject.Position = position;