Пример #1
0
 public static void GatherAroundPosition(Vector2 Position)
 {
     RemoveGatheringPoint();
     CenterType           = GatherCenterType.GatherAroundPosition;
     GatherCenterPosition = Position;
 }
Пример #2
0
 public static void GatherAroundPlayer()
 {
     RemoveGatheringPoint();
     CenterType = GatherCenterType.GatherAroundPlayer;
 }
Пример #3
0
 public static void GatherAroundGuardian(TerraGuardian tg)
 {
     RemoveGatheringPoint();
     CenterType     = GatherCenterType.GatherAroundGuardian;
     GatherGuardian = tg;
 }
Пример #4
0
 public static void RemoveGatheringPoint()
 {
     CenterType           = GatherCenterType.DontGatherAroundSomething;
     GatherGuardian       = null;
     GatherCenterPosition = Vector2.Zero;
 }