Vector3 WorldScale { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The WorldScale property represents the scale of the game object in world coordinates. This property is part of the Component class in the Sandbox framework, which is used to define the behavior and properties of game objects within a scene.

Usage

Use the WorldScale property to get or set the scale of a game object in the world space. This is useful when you need to adjust the size of an object relative to the entire scene, rather than just its local environment.

Example

// Example of setting the WorldScale of a component
Component myComponent = new Component();
myComponent.WorldScale = new Vector3(2.0f, 2.0f, 2.0f); // Sets the world scale to double the size in all dimensions

// Example of getting the WorldScale of a component
Vector3 currentScale = myComponent.WorldScale;
Console.WriteLine($"Current World Scale: {currentScale}");