Description
The WithSemiStaticUsage
method is part of the TextureCubeBuilder
class in the Sandbox API. This method configures the texture cube to use a semi-static usage pattern. Semi-static usage is typically used for textures that are updated infrequently but still require some level of dynamic updates. This method is useful when you need a balance between static and dynamic usage, allowing for occasional updates without the overhead of fully dynamic textures.
Usage
To use the WithSemiStaticUsage
method, you must first create an instance of TextureCubeBuilder
. Once you have the builder instance, you can chain this method to configure the texture cube's usage pattern. After setting the desired properties, call the Finish
method to create the texture.
Example
// Create a new TextureCubeBuilder instance
TextureCubeBuilder builder = new TextureCubeBuilder();
// Configure the texture cube with semi-static usage
builder = builder.WithSemiStaticUsage();
// Further configuration can be done here
// ...
// Finalize and create the texture
Texture texture = builder.Finish();