Texture2DBuilder WithSemiStaticUsage()

book_4_sparkGenerated
code_blocksInput

Description

The WithSemiStaticUsage method is part of the Texture2DBuilder class in the Sandbox namespace. This method configures the texture to use a semi-static usage pattern. Semi-static usage is suitable for textures that are updated infrequently but still require some level of dynamic updates. This can be useful for textures that change occasionally but not every frame.

Usage

To use the WithSemiStaticUsage method, first create an instance of Texture2DBuilder. Then, call the WithSemiStaticUsage method on this instance to set the usage pattern of the texture to semi-static. This method returns the same Texture2DBuilder instance, allowing for method chaining.

Example

// Example of using WithSemiStaticUsage
Texture2DBuilder builder = new Texture2DBuilder();
builder.WithSize(256, 256)
       .WithFormat(ImageFormat.RGBA8)
       .WithSemiStaticUsage();

Texture texture = builder.Finish();
// The texture is now configured with semi-static usage.