Transform LocalTransform { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The LocalTransform property of a Component represents the local transformation of the game object to which the component is attached. This includes the position, rotation, and scale of the game object relative to its parent in the scene hierarchy.

Usage

Use the LocalTransform property to get or set the local transformation of a game object. This is useful when you need to manipulate the object's position, rotation, or scale in relation to its parent object.

Example

// Example of accessing and modifying the LocalTransform property

// Assume 'component' is an instance of a Component
Transform localTransform = component.LocalTransform;

// Modify the local position
localTransform.Position = new Vector3(1.0f, 2.0f, 3.0f);

// Apply the modified transform back to the component
component.LocalTransform = localTransform;