GameTransform Transform { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Transform property provides access to the transform of the GameObject that this Component is attached to. Components themselves do not have their own transforms, but they can access the transform of their parent GameObject. This property serves as a convenient shortcut for accessing GameObject.Transform.

Usage

Use the Transform property to manipulate or query the position, rotation, and scale of the GameObject that the component is attached to. This is useful for operations such as moving the object, rotating it, or scaling it in the game world.

Example

// Example of accessing the Transform property
public class MyComponent : Component
{
    public void MoveUp(float distance)
    {
        // Access the Transform property to move the GameObject upwards
        Transform.Position += Vector3.Up * distance;
    }
}