Description
The WithData
method of the TextureArrayBuilder
class allows you to specify the raw byte data for a texture array. This method is part of a fluent interface, enabling you to chain multiple configuration methods together to build a texture array with specific properties.
Usage
To use the WithData
method, you need to provide a byte array that contains the texture data. This method is typically used in conjunction with other configuration methods of the TextureArrayBuilder
to fully define the texture array before finalizing it with the Finish
method.
Example
// Example of using the WithData method
byte[] textureData = LoadTextureData(); // Assume this function loads your texture data
TextureArrayBuilder builder = new TextureArrayBuilder();
builder.WithData(textureData)
.WithSize(256, 256) // Set the size of the texture
.WithFormat(ImageFormat.RGBA8) // Set the format of the texture
.WithCount(1); // Set the number of textures in the array
Texture textureArray = builder.Finish(); // Finalize and create the texture array