-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Open
Description
InvokeTickInAirSim is called in LateUpdate:
| airsimInterface.InvokeTickInAirSim(Time.deltaTime); |
while
transform is updated in FixedUpdate:| transform.position = position; |
Is there a reason for this?
FixedUpdate and LateUpdate are not necessarily in sync.
Also, I would expect currentPose = poseFromAirLib; after transform is updated.
What am I missing?