Texture3DBuilder WithScreenMultiSample()

book_4_sparkGenerated
code_blocksInput

Description

The WithScreenMultiSample method is a member of the Texture3DBuilder class in the Sandbox API. This method configures the Texture3DBuilder to use screen-based multi-sampling. Multi-sampling is a technique used to improve the quality of rendered images by reducing aliasing, which is the visual stair-stepping effect that can occur along the edges of objects.

Usage

To use the WithScreenMultiSample method, you must first create an instance of the Texture3DBuilder class. Once you have the builder instance, you can chain the WithScreenMultiSample method to configure the texture for screen-based multi-sampling. This method returns the same Texture3DBuilder instance, allowing for method chaining to set additional properties or configurations before finalizing the texture creation with the Finish method.

Example

// Example of using WithScreenMultiSample
Texture3DBuilder builder = new Texture3DBuilder();
Texture texture = builder
    .WithSize(256, 256, 256)
    .WithFormat(ImageFormat.RGBA8)
    .WithScreenMultiSample()
    .Finish();

// The texture is now configured with screen-based multi-sampling and ready for use.