1
3

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.

ユーザーが本当に求めていた世界一シンプルなFPSカメラ

Last updated at Posted at 2021-03-08

FPSのゲームと”全く同じ動き”をするカメラです.
いわゆるマウスカメラ?

#前置き 
FPSカメラが欲しくなって記事を探すと,結構な確率でいざスクリプトをコピーしてカメラをぐりぐり回してみても視界がぐにょぐにょして上と下が分からなくなるモノに出くわすので,毎回修正して使用するのに苦労するので備忘録代わりに記事にすることにしました.

#実装のアイデア

  1. マウスの移動量をとってきてカメラの回転の移動量とする
  2. 軸ごとに回転させる
  3. 軸によっては動的にその向きを変える

特に3つ目が出来てないとカメラがぐにょぐにょしがち

#コード
コピってカメラにつけるだけ

CameraControl.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CameraControl : MonoBehaviour
{
    //マウス感度
    float sensitivity=1f;

    void Update()
    {
        CameraRotate_Mouse();
    }

    private void CameraRotate_Mouse()
    {
        //マウスの移動量取得
        float x = Input.GetAxis("Mouse X") * sensitivity;
        float y = Input.GetAxis("Mouse Y") * sensitivity;

        //Y軸中心にカメラを回転
        transform.RotateAround(transform.position, Vector3.up, x);
        
        //上を見上げすぎて逆に後ろを向いちゃうのを防止.のつもりだったけど挙動変なので別途付け加えてください.
        /*if (transform.forward.y + y > 0.9f)
           y = 0.9f - transform.forward.y;*/

        //カメラのX軸を中心に回転
        transform.RotateAround(transform.position, transform.right, -y);
    }
}

マウス感度とか制限とかはおまけで付けた.
取り除いてもFPSゲームと同じ動きをするカメラってところには変わりないので実際はもっとシンプルにできる.↓

SimpleCameraControl.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SimpleCameraControl : MonoBehaviour
{

    void Update()
    {
        CameraRotate_Mouse();
    }

    private void CameraRotate_Mouse()
    {
        //マウスの移動量取得
        float x = Input.GetAxis("Mouse X");
        float y = Input.GetAxis("Mouse Y");

        //Y軸中心にカメラを回転
        transform.RotateAround(transform.position, Vector3.up, x);
        //カメラのX軸を中心に回転
        transform.RotateAround(transform.position, transform.right, -y);
    }
}

↑どう?めっちゃシンプルじゃね?
これだけでFPSっぽくマウスでカメラを動かせます.

#特に大事なところ
transform.RotateAround(transform.position, Vector3.up, x);
transform.RotateAround(transform.position, transform.right, -y);

・RotateAroundを使って回転軸を指定して回転を行う.
・マウスの移動量はx方向(左右の動き)とy方向(上下の動き)で取れる.
例:マウスを右に動かしたときにカメラが右を向くようにしたければ,マウスの移動量xをy軸中心の回転の移動量にする.
・Vector3.rightとtransform.rightで動き方が変化するので注意

#参考になりましたらLGTMよろしくお願いします
よろしくおねがいします

1
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?