Description
The WithDynamicUsage
method is part of the Texture2DBuilder
class in the Sandbox namespace. This method configures the texture to be created with dynamic usage, which is suitable for textures that will be updated frequently. Dynamic usage allows for more efficient updates to the texture data, making it ideal for scenarios where the texture content changes often.
Usage
To use the WithDynamicUsage
method, first create an instance of Texture2DBuilder
. Then, call the WithDynamicUsage
method on this instance to set the usage type to dynamic. This method can be chained with other configuration methods provided by Texture2DBuilder
to further customize the texture properties. Finally, call the Finish
method to create the texture.
Example
// Example of using WithDynamicUsage
Texture2DBuilder builder = new Texture2DBuilder();
Texture texture = builder
.WithSize(256, 256)
.WithDynamicUsage()
.Finish();
// The texture is now configured with dynamic usage and can be updated frequently.