Vector3 WorldPosition { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The WorldPosition property represents the position of the game object in world coordinates. It is a Vector3 value that provides the exact location of the game object within the scene, taking into account the entire hierarchy of parent objects and their transformations.

Usage

Use the WorldPosition property to get or set the position of a game object in the world space. This is useful when you need to position an object relative to the entire scene rather than its local parent.

Example

// Example of setting a game object's world position
Component myComponent = someGameObject.GetComponent<Component>();
myComponent.WorldPosition = new Vector3(10.0f, 5.0f, 3.0f);

// Example of getting a game object's world position
Vector3 currentWorldPosition = myComponent.WorldPosition;

// Output the world position
// Note: Avoid using Console.WriteLine in Sandbox
DebugOverlay.Text(currentWorldPosition.ToString(), currentWorldPosition);