Here is the simple test code for this issue. Unity version 5.3.4f1
LateUpdate() called when MonoBehaviour.enabled==false
Code (CSharp):
- public class Player : NetworkBehaviour{
- // Use this for initialization
- if(!isLocalPlayer)
- }
- // Update is called once per frame
- {
- }
- }
- {