TextureCubeBuilder WithName( string name )

book_4_sparkGenerated
code_blocksInput

Description

The WithName method of the TextureCubeBuilder class allows you to specify a name for the texture cube being built. This can be useful for identifying the texture cube within your application or for debugging purposes.

Usage

To use the WithName method, call it on an instance of TextureCubeBuilder and pass a string representing the desired name of the texture cube. This method returns the TextureCubeBuilder instance, allowing for method chaining.

Example

// Example of using WithName method
TextureCubeBuilder builder = new TextureCubeBuilder();
builder.WithName("MyTextureCube");

// Continue building the texture cube
builder.WithSize(256, 256)
       .WithFormat(ImageFormat.RGBA8)
       .Finish();