Description
The WithSemiStaticUsage
method is a member of the Texture3DBuilder
class in the Sandbox namespace. This method configures the texture 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.
Usage
To use the WithSemiStaticUsage
method, you must first create an instance of the Texture3DBuilder
class. Once you have the builder instance, you can chain this method to configure the texture's usage pattern. After setting the desired properties, call the Finish
method to create the texture.
Example
// Example of using WithSemiStaticUsage
Texture3DBuilder builder = new Texture3DBuilder();
Texture texture = builder
.WithSize(256, 256, 256)
.WithFormat(ImageFormat.RGBA8)
.WithSemiStaticUsage()
.Finish();
// The texture is now configured with semi-static usage and ready for use.