Description
The WithMultiSample4X
method is a member of the TextureCubeBuilder
class in the Sandbox namespace. This method configures the texture cube to use 4x multisampling, which can improve the visual quality by reducing aliasing effects at the cost of increased memory usage and processing time.
Usage
To use the WithMultiSample4X
method, you must first have an instance of TextureCubeBuilder
. Call this method on the instance to set the multisampling level to 4x. This method returns the same TextureCubeBuilder
instance, allowing for method chaining.
Example
// Example of using WithMultiSample4X
TextureCubeBuilder builder = new TextureCubeBuilder();
builder.WithMultiSample4X();
Texture texture = builder.Finish();
// The texture is now configured with 4x multisampling.