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.
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.
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 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}");