18 lines
291 B
C#
18 lines
291 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 相机参数
|
|
/// </summary>
|
|
public class CameraData : MonoBehaviour
|
|
{
|
|
|
|
|
|
[Header("x")] public float x;
|
|
[Header("y")] public float y;
|
|
[Header("缩放")] public float zoom;
|
|
|
|
|
|
}
|