Method SetLocalPositionAndRotation
SetLocalPositionAndRotation(float3, quaternion)
Sets the local (parent-relative) position and rotation to the provided values.
Declaration
public void SetLocalPositionAndRotation(float3 position, quaternion rotation)
Parameters
| Type | Name | Description |
|---|---|---|
| float3 | position | The new parent-relative position |
| quaternion | rotation | The new parent-relative rotation |
Remarks
This function gives identical results to the following operations, but is more efficient:
transformRef.LocalPosition = position;
transformRef.LocalRotation = rotation;