Texture2DBuilder WithSize( int width, int height )
Texture2DBuilder WithSize( Vector2 size )

book_4_sparkGenerated
code_blocksInput

Description

The WithSize method of the Texture2DBuilder class allows you to specify the dimensions of the texture you are building. This method is part of a fluent interface, enabling you to chain multiple configuration methods together to customize the texture before finalizing it with the Finish method.

Usage

To use the WithSize method, call it on an instance of Texture2DBuilder and provide the desired width and height as integer parameters. This method returns the same Texture2DBuilder instance, allowing for method chaining.

Example

// Example of using WithSize method
Texture2DBuilder builder = new Texture2DBuilder();
builder.WithSize(1024, 768)
       .WithFormat(ImageFormat.RGBA8)
       .WithMips(4);

Texture texture = builder.Finish();
// The texture is now created with the specified size, format, and mip levels.