트러블 슈팅1. 캐릭터 동기화 시, 끊김 현상 기존의 PhotonTransformView로 캐릭터의 position, rotation을 동기화 했는데, 끊김 현상이 심하게 발생했고, 점프 시, position의 y 값을 제대로 동기화하지 못했다. 이유는 유니티 3D의 빠른 움직임을 동기화할 때는 PhotonTransformView 동기화는 무리가 있다는 것을 알게되었다. public Vector3 _playerPosition;public Quaternion _playerRotation;private void Update(){ if(_photonView.IsMine) Move(); else { transform.position = Vector3.Lerp(transform.po..