Description
The WithMultiSample6X
method is a member of the Texture2DBuilder
class in the Sandbox API. This method configures the texture being built to use 6x multisampling. Multisampling is a technique used to improve image quality by reducing aliasing, which is the visual stair-stepping effect that can occur along the edges of objects.
Usage
To use the WithMultiSample6X
method, first create an instance of Texture2DBuilder
. Then, call the WithMultiSample6X
method on this instance to set the multisampling level to 6x. This method returns the same Texture2DBuilder
instance, allowing for method chaining. Finally, call the Finish
method to create the texture with the specified settings.
Example
// Create a new Texture2DBuilder instance
Texture2DBuilder builder = new Texture2DBuilder();
// Configure the texture to use 6x multisampling
builder.WithMultiSample6X();
// Finalize the texture creation
Texture texture = builder.Finish();