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.
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.
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.
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;