using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CameraRotate : MonoBehaviour {
? ? public Transform pos; //圍繞旋轉的坐標點
// Update is called once per frame
void Update () {
? ? ? ? transform.RotateAround(pos.position,pos.up,Time.deltaTime*5);
}
}