Texture2DBuilder WithScreenMultiSample()

book_4_sparkGenerated
code_blocksInput

Description

The WithScreenMultiSample method is a member of the Texture2DBuilder class in the Sandbox API. This method configures the texture to use the screen's multisample settings, which can enhance the visual quality by reducing aliasing effects. It is part of a fluent interface, allowing for method chaining to build a texture with specific properties.

Usage

To use the WithScreenMultiSample method, first create an instance of Texture2DBuilder. Then, call WithScreenMultiSample on this instance to apply the screen's multisample settings to the texture being built. This method returns the Texture2DBuilder instance, allowing for further configuration or finalization of the texture.

Example

// Example of using WithScreenMultiSample in a texture building process
Texture2DBuilder builder = new Texture2DBuilder();
Texture texture = builder
    .WithSize(1024, 768)
    .WithScreenFormat()
    .WithScreenMultiSample()
    .Finish();

// The texture is now configured with the screen's multisample settings.