The WithName
method is a member of the TextureArrayBuilder
class in the Sandbox namespace. This method allows you to specify a name for the texture array being built. The name can be used for identification or debugging purposes.
The WithName
method is a member of the TextureArrayBuilder
class in the Sandbox namespace. This method allows you to specify a name for the texture array being built. The name can be used for identification or debugging purposes.
To use the WithName
method, call it on an instance of TextureArrayBuilder
and pass a string representing the desired name of the texture array. This method returns the same TextureArrayBuilder
instance, allowing for method chaining.
// Create a new TextureArrayBuilder instance var builder = new TextureArrayBuilder(); // Set the name of the texture array builder.WithName("MyTextureArray"); // Continue building the texture array with other methods builder.WithSize(1024, 1024) .WithFormat(ImageFormat.RGBA8) .Finish();