YZTRootLayer.cs 227 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public enum ViewMode
  5. {
  6. normal,
  7. miniMap
  8. };
  9. public class YZTRootLayer : MonoBehaviour
  10. {
  11. public ViewMode viewMode = ViewMode.normal;
  12. }