Texture3DBuilder WithData( System.Byte[] data, int dataLength )

book_4_sparkGenerated
code_blocksInput

Description

The WithData method of the Texture3DBuilder class allows you to specify the raw byte data for a 3D texture. This method is part of a fluent interface, enabling you to chain multiple configuration methods together to build a texture 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 Texture3DBuilder to fully define the texture's properties before finalizing it with the Finish method.

Example

// Example of using the WithData method
byte[] textureData = LoadTextureData(); // Assume this function loads your texture data

Texture3DBuilder builder = new Texture3DBuilder();
builder.WithSize(256, 256, 256) // Set the size of the texture
       .WithFormat(ImageFormat.RGBA8) // Set the format of the texture
       .WithData(textureData) // Provide the texture data
       .Finish(); // Finalize and create the texture