Exemplo n.º 1
0
 public static void GatherAroundPosition(Vector2 Position)
 {
     RemoveGatheringPoint();
     CenterType           = GatherCenterType.GatherAroundPosition;
     GatherCenterPosition = Position;
 }
Exemplo n.º 2
0
 public static void GatherAroundPlayer()
 {
     RemoveGatheringPoint();
     CenterType = GatherCenterType.GatherAroundPlayer;
 }
Exemplo n.º 3
0
 public static void GatherAroundGuardian(TerraGuardian tg)
 {
     RemoveGatheringPoint();
     CenterType     = GatherCenterType.GatherAroundGuardian;
     GatherGuardian = tg;
 }
Exemplo n.º 4
0
 public static void RemoveGatheringPoint()
 {
     CenterType           = GatherCenterType.DontGatherAroundSomething;
     GatherGuardian       = null;
     GatherCenterPosition = Vector2.Zero;
 }