Description
The WithSize
method of the TextureCubeBuilder
class allows you to specify the dimensions of the texture cube you are building. This method sets the width and height of the texture cube, which are essential parameters for defining the size of the texture.
Usage
To use the WithSize
method, call it on an instance of TextureCubeBuilder
and pass the desired width and height as integer parameters. This method is part of a fluent interface, allowing you to chain multiple configuration methods together before finalizing the texture cube with the Finish
method.
Example
// Create a new TextureCubeBuilder instance
TextureCubeBuilder builder = new TextureCubeBuilder();
// Set the size of the texture cube to 256x256
builder.WithSize(256, 256);
// Continue configuring the texture cube as needed
// ...
// Finalize and create the texture
Texture texture = builder.Finish();