LoginSignup
1
2

More than 5 years have passed since last update.

一定距離のカメラ

Last updated at Posted at 2017-11-16
CameraFollowPlayer.cs

using UnityEngine;
using System.Collections;

public class CameraFollowPlayer : MonoBehaviour
{
    public Transform target;    // ターゲットへの参照
    private Vector3 offset;     // 相対座標

    void Start()
    {
        //自分自身とtargetとの相対距離を求める
        offset = GetComponent<Transform>().position - target.position;
    }

    void Update()
    {
        // 自分自身の座標に、targetの座標に相対座標を足した値を設定する
        GetComponent<Transform>().position = target.position + offset;
    }
}

スクリプト貼り付けるオブジェクト:Main Camera
TargetにプレイヤーをD&D

カメラ1.png

キャラクターにカメラがついていきます
camera
目次に戻る

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