31 lines
583 B
C#
31 lines
583 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class GameMangner_TSQ : MonoBehaviour
|
|
{
|
|
public static GameMangner_TSQ instance;
|
|
|
|
/// <summary>
|
|
/// 三个场景中第一人称
|
|
/// </summary>
|
|
public List<Transform> FirstPersonController;
|
|
/// <summary>
|
|
/// 主场景摄像机
|
|
/// </summary>
|
|
public Camera MainCamera;
|
|
// Start is called before the first frame update
|
|
public void Init()
|
|
{
|
|
|
|
}
|
|
void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
void Start()
|
|
{
|
|
Init();
|
|
}
|
|
}
|