TextureArrayBuilder WithMultiSample2X()

book_4_sparkGenerated
code_blocksInput

Description

The WithMultiSample2X method is a member of the TextureArrayBuilder class in the Sandbox namespace. This method configures the texture array to use 2x multisampling, which can help improve the visual quality of textures by reducing aliasing effects.

Usage

To use the WithMultiSample2X method, you must first create an instance of the TextureArrayBuilder class. Then, call the WithMultiSample2X method on this instance to set the multisampling level to 2x. This method returns the same TextureArrayBuilder instance, allowing for method chaining.

Example

// Example of using WithMultiSample2X
TextureArrayBuilder builder = new TextureArrayBuilder();
builder.WithSize(1024, 1024)
       .WithFormat(ImageFormat.RGBA8)
       .WithMultiSample2X();

Texture texture = builder.Finish();
// The texture is now created with 2x multisampling.