Пример #1
0
 public override void Draw()
 {
     base.Draw();
     DropShipUtility.DrawDropSpotShadow(this, this.drawTickOffset);
     if (Find.Targeter.IsTargeting && Find.Selector.IsSelected(this))
     {
         GhostDrawer.DrawGhostThing(UI.MouseCell(), this.Rotation, this.def, null, new Color(0.5f, 1f, 0.6f, 0.4f), AltitudeLayer.Blueprint);
     }
 }
 public override void Draw()
 {
     this.containingShip.DrawAt(DropShipUtility.DrawPosAt(this.containingShip, this.containingShip.drawTickOffset, this));
     foreach (KeyValuePair <ShipWeaponSlot, Building_ShipTurret> current in this.containingShip.installedTurrets)
     {
         if (current.Value != null)
         {
             current.Value.Draw();
         }
     }
     DropShipUtility.DrawDropSpotShadow(this.containingShip, this.containingShip.drawTickOffset, this);
 }
Пример #3
0
 public override void Draw()
 {
     base.Draw();
     DropShipUtility.DrawDropSpotShadow(this, this.drawTickOffset);
 }