Texture GetTexture( Sandbox.StringToken& name, Sandbox.Texture& defaultValue )
Texture GetTexture( System.String& name, Sandbox.Texture& defaultValue )

book_4_sparkGenerated
code_blocksInput

Description

The GetTexture method in the RenderAttributes class is used to retrieve a texture associated with a given name. If the texture is not found, it returns a specified default texture.

Usage

To use the GetTexture method, you need to provide a StringToken that represents the name of the texture you want to retrieve, and a reference to a Texture that will be used as the default value if the texture is not found.

Example usage:

RenderAttributes renderAttributes = new RenderAttributes();
StringToken textureName = new StringToken("exampleTexture");
Texture defaultTexture = new Texture();
Texture resultTexture = renderAttributes.GetTexture(ref textureName, ref defaultTexture);

In this example, resultTexture will contain the texture associated with exampleTexture if it exists, otherwise it will contain defaultTexture.

Example

RenderAttributes renderAttributes = new RenderAttributes();
StringToken textureName = new StringToken("exampleTexture");
Texture defaultTexture = new Texture();
Texture resultTexture = renderAttributes.GetTexture(ref textureName, ref defaultTexture);