1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Photonを使ってのカメラワーク

Last updated at Posted at 2020-05-27

FPSなどのゲームをつくって自分からのカメラ視点を設定した場合

Photonなどのネットワークを介して動作したときにカメラの視点がうまく
自分の視点に切り替わらなかったのでその時の対処法を備忘録的に、、

photonManager的スクリプトで
// マッチングが成功した時に呼ばれるコールバック
public override void OnJoinedRoom()
{
// マッチング後、ランダムな位置に自分自身のネットワークオブジェクトを生成する
GameObject camera PhotonNetwork.Instantiate("Camera",player.transform.position,Quaternion.identity);
}
いたって簡単で
cameraのスクリプトに
if(!photonView.IsMine)
{
gameObject.SetActive(false);
}
にするだけでした。

ちなみに私のプレーヤー追従のカメラスクリプトは以下です
参考までに

void FixedUpdate()
{
if(!photonView.IsMine)
{
gameObject.SetActive(false);
}

    if(photonView.IsMine)
    {
        // カメラの位置を設定
        Transform player = GameObject.FindGameObjectWithTag("Player").transform;


        var desiredPos = player.position - player.forward * baseDistance + Vector3.up * baseCameraHeight;

        cam.position = Vector3.Lerp(cam.position, desiredPos, Time.deltaTime * chaseDamper);

        // カメラの向きを設定
        cam.LookAt(player);
    }
     


    
    
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?