GlobalViewComponent.cs 336 B

123456789101112131415
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. [ComponentOf(typeof(Scene))]
  5. public class GlobalViewComponent: Entity, IAwake
  6. {
  7. [StaticField]
  8. public static GlobalViewComponent Instance;
  9. public Transform Global;
  10. public Transform Unit { get; set; }
  11. //public Transform UI;
  12. }
  13. }