Description
The WithScreenFormat
method is a member of the Texture3DBuilder
class in the Sandbox namespace. This method configures the Texture3DBuilder
to use a screen-compatible format for the 3D texture being built. This is particularly useful when the texture is intended to be used in scenarios where it needs to be displayed directly on the screen, ensuring compatibility with screen rendering requirements.
Usage
To use the WithScreenFormat
method, you should have an instance of Texture3DBuilder
. Call this method on the instance to set the texture format to a screen-compatible format. This method is chainable, meaning you can call other configuration methods on the same instance before finalizing the texture creation with the Finish
method.
Example
// Example of using WithScreenFormat
Texture3DBuilder builder = new Texture3DBuilder();
Texture texture = builder
.WithSize(256, 256, 256) // Set the size of the texture
.WithScreenFormat() // Set the format to screen-compatible
.Finish(); // Finalize and create the texture