2023-10-19 15:00:19 +08:00
|
|
|
using System;
|
2023-10-30 18:23:17 +08:00
|
|
|
using Framework;
|
2023-10-19 15:00:19 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public class TeamEditCameraObj: MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
private static TeamEditCameraObj _instance;
|
|
|
|
|
|
|
|
|
|
public static TeamEditCameraObj Instance => _instance;
|
|
|
|
|
|
|
|
|
|
public Camera teamEditCamera;
|
|
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
_instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnDestroy()
|
|
|
|
|
{
|
|
|
|
|
_instance = null;
|
|
|
|
|
}
|
|
|
|
|
}
|