I am wondering in which order (Unity - Manual: Order of execution for event functions) the code in a RPC or Command is executed in the specific frame where the message is received.
Is it before or after Update/FixedUpdate ?
I am wondering in which order (Unity - Manual: Order of execution for event functions) the code in a RPC or Command is executed in the specific frame where the message is received.
Is it before or after Update/FixedUpdate ?
According to the networking bitbucket Repository’s NetworkIdentity, it has a UNETUpdate euch comment states that it’s called immediately after regular Updates, which means in between Update and FixedUpdate