The Transform System is a core part of the Untold Engine, responsible for managing the position, rotation, and scale of entities. It provides both local transformations (relative to a parent entity) and world transformations (absolute in the scene).
The Transform System is essential for positioning and orienting entities in your scene. It ensures entities move, rotate, and scale correctly while maintaining hierarchical relationships in a scene graph.
- Retrieve Transform Data: Access local or world positions, orientations, and axis vectors.
- Update Transform Data: Modify an entity’s position or rotation with ease.
- Hierarchical Transformations: Manage transformations relative to parent entities for complex object hierarchies.
You can retrieve an entity’s position, orientation, or axis vectors using the provided functions.
Retrieves the entity’s position relative to its parent.
let localPosition = getLocalPosition(entityId: entity)
Retrieves the entity’s absolute position in the scene.
let worldPosition = getPosition(entityId: entity)
Retrieves the entity’s orientation matrix relative to its parent.
let localOrientation = getLocalOrientation(entityId: entity)
Retrieves the entity’s absolute orientation matrix.
let worldOrientation = getOrientation(entityId: entity)
Retrieve the entity’s forward, right, or up axis:
let forward = getForwardAxisVector(entityId: entity)
let right = getRightAxisVector(entityId: entity)
let up = getUpAxisVector(entityId: entity)
Modify an entity’s transform by translating or rotating it.
Move the entity to a new position:
translateTo(entityId: entity, position: simd_float3(5.0, 0.0, 3.0))
Move the entity by an offset relative to its current position:
translateBy(entityId: entity, position: simd_float3(1.0, 0.0, 0.0))
Rotate the entity to a specific angle around an axis:
rotateTo(entityId: entity, angle: 45.0, axis: simd_float3(0.0, 1.0, 0.0))
Apply an incremental rotation to the entity:
rotateBy(entityId: entity, angle: 15.0, axis: simd_float3(0.0, 1.0, 0.0))
Directly set the entity’s rotation matrix:
rotateTo(entityId: entity, rotation: simd_float4x4( /* matrix values */ ))
- Local and World Transform Components:
- Each entity has a LocalTransformComponent for transformations relative to its parent.
- The WorldTransformComponent calculates the absolute transform by combining the local transform with the parent’s world transform.
- Transform Matrices:
- Transformations are stored in 4x4 matrices that include position, rotation, and scale.
- These matrices are updated whenever you translate or rotate an entity.
- Scene Graph Integration:
- Changes to a parent entity automatically propagate to its children through the scene graph.
- Use Local Transformations for Hierarchies:
- For example, a car’s wheels (children) should use local transforms relative to the car body (parent).
- Combine Translations and Rotations:
- Use translateTo or rotateTo to set an entity’s absolute position or rotation.
- Use translateBy or rotateBy for incremental adjustments.