Returns the world-space transform the actor is rendered with this frame. Falls back to the Transform for actors (and ancestors) without an active Interpolation component.
Requests an immediate visual jump to the actor's Transform. Call right after teleporting the actor.
Public API for reading render-facing (visually smoothed) transforms.
Retrieve it via
world.systemApi.get(InterpolatorAPI). Use it in systems and behaviors that position visuals against moving actors — e.g. a camera-follow script — instead of reading the authoritative Transform, which advances in fixed steps.Values are computed from the current
Time.alpha, so this API is only meaningful during the update phase (not insidefixedUpdate).