XunLuoPathComponent.cs 310 B

123456789101112
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. [ComponentOf(typeof(Unit))]
  5. public class XunLuoPathComponent: Entity, IAwake
  6. {
  7. public Vector3[] path = new Vector3[] { new Vector3(0, 0, 0), new Vector3(20, 0, 0), new Vector3(20, 0, 20), new Vector3(0, 0, 20), };
  8. public int Index;
  9. }
  10. }