Description
The LocalPosition
property represents the local position of the game object within its parent. It is a Vector3
value that defines the position of the game object relative to its parent object in the scene hierarchy. This property is useful for manipulating the position of a game object without affecting its global position in the scene.
Usage
Use the LocalPosition
property to get or set the local position of a game object. This can be useful when you want to move a game object relative to its parent, such as when positioning a child object within a parent container.
Example
// Example of setting the local position of a component
Component myComponent = someGameObject.GetComponent<Component>();
myComponent.LocalPosition = new Vector3(1.0f, 2.0f, 3.0f);
// Example of getting the local position of a component
Vector3 currentLocalPosition = myComponent.LocalPosition;
// Adjusting the local position
myComponent.LocalPosition += new Vector3(0.5f, 0.0f, 0.0f);