Transform WithScale( float scale )
Transform WithScale( Vector3 scale )

book_4_sparkGenerated
code_blocksInput

Description

The WithScale method of the Transform struct allows you to create a new Transform instance with a specified uniform scale. This method is useful when you want to adjust the scale of an object while keeping its position and rotation unchanged.

Usage

To use the WithScale method, call it on an existing Transform instance and pass the desired scale as a float. The method returns a new Transform instance with the updated scale.

Example

// Example of using WithScale method
Transform originalTransform = new Transform();
float newScale = 2.0f;
Transform scaledTransform = originalTransform.WithScale(newScale);

// The scaledTransform now has the same position and rotation as originalTransform,
// but with a uniform scale of 2.0.