Exemple #1
0
		public RallyPoint(Actor self, RallyPointInfo info)
		{
			Info = info;
			ResetLocation(self);
			PaletteName = info.IsPlayerPalette ? info.Palette + self.Owner.InternalName : info.Palette;
			self.World.Add(new RallyPointIndicator(self, this));
		}
Exemple #2
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     Info = info;
     ResetLocation(self);
     PaletteName = info.IsPlayerPalette ? info.Palette + self.Owner.InternalName : info.Palette;
     self.World.Add(new RallyPointIndicator(self, this));
 }
Exemple #3
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     Info = info;
     ResetPath(self);
     PaletteName = info.IsPlayerPalette ? info.Palette + self.Owner.InternalName : info.Palette;
 }
Exemple #4
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     Location = self.Location + info.RallyPoint;
     self.World.AddFrameEndTask(w => w.Add(new RallyPointIndicator(self, info.IndicatorPalettePrefix)));
 }
Exemple #5
0
 public RallyPoint(Actor self, RallyPointInfo info)
 {
     Location = self.Location + info.RallyPoint;
     self.World.AddFrameEndTask(w => w.Add(new RallyPointIndicator(self, info.IndicatorPalettePrefix)));
 }