TextureCubeBuilder WithDynamicUsage()

book_4_sparkGenerated
code_blocksInput

Description

The WithDynamicUsage method is part of the TextureCubeBuilder class in the Sandbox namespace. This method configures the texture cube to be created with dynamic usage. Dynamic usage is typically used for textures that are frequently updated, allowing for more efficient updates at the cost of potentially lower performance for static data.

Usage

To use the WithDynamicUsage method, you should first create an instance of TextureCubeBuilder. Then, call the WithDynamicUsage method on this instance to set the usage type to dynamic. This method returns the same TextureCubeBuilder instance, allowing for method chaining.

Example

// Example of using WithDynamicUsage
TextureCubeBuilder builder = new TextureCubeBuilder();
builder = builder.WithDynamicUsage();

// Continue configuring the builder as needed
builder = builder.WithSize(256, 256);

// Finally, create the texture
Texture texture = builder.Finish();