TextureArrayBuilder WithSize( int width, int height )

book_4_sparkGenerated
code_blocksInput

Description

The WithSize method is part of the TextureArrayBuilder class in the Sandbox namespace. This method allows you to specify the dimensions of the texture array you are building. By setting the width and height, you define the size of each texture in the array.

Usage

To use the WithSize method, you need to have an instance of TextureArrayBuilder. Call this method with the desired width and height as integer parameters. This method returns the same TextureArrayBuilder instance, allowing for method chaining.

Example

// Create a new TextureArrayBuilder instance
TextureArrayBuilder builder = new TextureArrayBuilder();

// Set the size of the texture array to 1024x1024
builder.WithSize(1024, 1024);

// Continue building the texture array with other configurations
builder.WithFormat(ImageFormat.RGBA8).WithCount(10);

// Finish building and create the texture
Texture textureArray = builder.Finish();