diff --git a/Content.Client/GameObjects/EntitySystems/VerbSystem.cs b/Content.Client/GameObjects/EntitySystems/VerbSystem.cs index 6f7f28b0ab..403cc6f6a3 100644 --- a/Content.Client/GameObjects/EntitySystems/VerbSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/VerbSystem.cs @@ -365,7 +365,8 @@ namespace Content.Client.GameObjects.EntitySystems (_icon = new TextureRect { MinSize = (32, 32), - Stretch = TextureRect.StretchMode.KeepCentered + Stretch = TextureRect.StretchMode.KeepCentered, + TextureScale = (0.5f, 0.5f) }), (_label = new Label()), // Padding @@ -424,6 +425,7 @@ namespace Content.Client.GameObjects.EntitySystems (_icon = new TextureRect { MinSize = (32, 32), + TextureScale = (0.5f, 0.5f), Stretch = TextureRect.StretchMode.KeepCentered }), @@ -438,7 +440,8 @@ namespace Content.Client.GameObjects.EntitySystems new TextureRect { Texture = IoCManager.Resolve() - .GetTexture("/Textures/Interface/VerbIcons/group.svg.96dpi.png"), + .GetTexture("/Textures/Interface/VerbIcons/group.svg.192dpi.png"), + TextureScale = (0.5f, 0.5f), Stretch = TextureRect.StretchMode.KeepCentered, } } diff --git a/Content.Client/GlobalVerbs/ExamineVerb.cs b/Content.Client/GlobalVerbs/ExamineVerb.cs index d54a5db298..c7dc3b92c7 100644 --- a/Content.Client/GlobalVerbs/ExamineVerb.cs +++ b/Content.Client/GlobalVerbs/ExamineVerb.cs @@ -16,7 +16,7 @@ namespace Content.Client.GlobalVerbs { data.Visibility = VerbVisibility.Visible; data.Text = Loc.GetString("Examine"); - data.IconTexture = "/Textures/Interface/VerbIcons/examine.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/examine.svg.192dpi.png"; } public override void Activate(IEntity user, IEntity target) diff --git a/Content.Client/GlobalVerbs/ViewVariablesVerb.cs b/Content.Client/GlobalVerbs/ViewVariablesVerb.cs index a6581be925..b0eb6b228f 100644 --- a/Content.Client/GlobalVerbs/ViewVariablesVerb.cs +++ b/Content.Client/GlobalVerbs/ViewVariablesVerb.cs @@ -26,7 +26,7 @@ namespace Content.Client.GlobalVerbs data.Text = "View Variables"; data.CategoryData = VerbCategories.Debug; - data.IconTexture = "/Textures/Interface/VerbIcons/vv.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/vv.svg.192dpi.png"; } public override void Activate(IEntity user, IEntity target) diff --git a/Content.Client/UserInterface/ContextMenu/ContextMenuElement.cs b/Content.Client/UserInterface/ContextMenu/ContextMenuElement.cs index ce4328b124..aa7928faf4 100644 --- a/Content.Client/UserInterface/ContextMenu/ContextMenuElement.cs +++ b/Content.Client/UserInterface/ContextMenu/ContextMenuElement.cs @@ -147,7 +147,8 @@ namespace Content.Client.UserInterface.ContextMenu }, new TextureRect { - Texture = IoCManager.Resolve().GetTexture("/Textures/Interface/VerbIcons/group.svg.96dpi.png"), + Texture = IoCManager.Resolve().GetTexture("/Textures/Interface/VerbIcons/group.svg.192dpi.png"), + TextureScale = (0.5f, 0.5f), Stretch = TextureRect.StretchMode.KeepCentered, } } diff --git a/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs b/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs index b47246de19..3766dd257d 100644 --- a/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs +++ b/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs @@ -263,7 +263,7 @@ namespace Content.Server.GameObjects.Components.Access } data.Text = Loc.GetString("Eject Privileged ID"); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; data.Visibility = component.PrivilegedIDEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible; } @@ -289,7 +289,7 @@ namespace Content.Server.GameObjects.Components.Access data.Text = Loc.GetString("Eject Target ID"); data.Visibility = component.TargetIDEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible; - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, IdCardConsoleComponent component) diff --git a/Content.Server/GameObjects/Components/ConfigurationComponent.cs b/Content.Server/GameObjects/Components/ConfigurationComponent.cs index 24c00d33dd..0549027a81 100644 --- a/Content.Server/GameObjects/Components/ConfigurationComponent.cs +++ b/Content.Server/GameObjects/Components/ConfigurationComponent.cs @@ -145,7 +145,7 @@ namespace Content.Server.GameObjects.Components } data.Text = Loc.GetString("Open Configuration"); - data.IconTexture = "/Textures/Interface/VerbIcons/settings.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/settings.svg.192dpi.png"; } protected override void Activate(IEntity user, ConfigurationComponent component) diff --git a/Content.Server/GameObjects/Components/Construction/ConstructionComponent.Verbs.cs b/Content.Server/GameObjects/Components/Construction/ConstructionComponent.Verbs.cs index 1a12e37d85..27c16a95cd 100644 --- a/Content.Server/GameObjects/Components/Construction/ConstructionComponent.Verbs.cs +++ b/Content.Server/GameObjects/Components/Construction/ConstructionComponent.Verbs.cs @@ -28,7 +28,7 @@ namespace Content.Server.GameObjects.Components.Construction data.CategoryData = VerbCategories.Construction; data.Text = Loc.GetString("Begin deconstructing"); - data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png"; } protected override void Activate(IEntity user, ConstructionComponent component) diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalMailingUnitComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalMailingUnitComponent.cs index 7bfd343aca..eb2767a653 100644 --- a/Content.Server/GameObjects/Components/Disposal/DisposalMailingUnitComponent.cs +++ b/Content.Server/GameObjects/Components/Disposal/DisposalMailingUnitComponent.cs @@ -792,7 +792,7 @@ namespace Content.Server.GameObjects.Components.Disposal data.Visibility = VerbVisibility.Visible; data.Text = Loc.GetString("Flush"); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, DisposalMailingUnitComponent component) diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalRouterComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalRouterComponent.cs index 3b5ddd0470..c8d5dcf635 100644 --- a/Content.Server/GameObjects/Components/Disposal/DisposalRouterComponent.cs +++ b/Content.Server/GameObjects/Components/Disposal/DisposalRouterComponent.cs @@ -199,7 +199,7 @@ namespace Content.Server.GameObjects.Components.Disposal } data.Text = Loc.GetString("Open Configuration"); - data.IconTexture = "/Textures/Interface/VerbIcons/settings.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/settings.svg.192dpi.png"; } protected override void Activate(IEntity user, DisposalRouterComponent component) diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalTaggerComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalTaggerComponent.cs index 8f56e45b44..5aa90d534e 100644 --- a/Content.Server/GameObjects/Components/Disposal/DisposalTaggerComponent.cs +++ b/Content.Server/GameObjects/Components/Disposal/DisposalTaggerComponent.cs @@ -158,7 +158,7 @@ namespace Content.Server.GameObjects.Components.Disposal } data.Text = Loc.GetString("Open Configuration"); - data.IconTexture = "/Textures/Interface/VerbIcons/settings.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/settings.svg.192dpi.png"; } protected override void Activate(IEntity user, DisposalTaggerComponent component) diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs index 7e6ec36681..763b0d80ad 100644 --- a/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs +++ b/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs @@ -703,7 +703,7 @@ namespace Content.Server.GameObjects.Components.Disposal data.Visibility = VerbVisibility.Visible; data.Text = Loc.GetString("Flush"); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, DisposalUnitComponent component) diff --git a/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs b/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs index 0502fbd2de..b993e01071 100644 --- a/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs +++ b/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs @@ -666,7 +666,7 @@ namespace Content.Server.GameObjects.Components.GUI data.Visibility = VerbVisibility.Visible; data.Text = Loc.GetString("Set Outfit"); data.CategoryData = VerbCategories.Debug; - data.IconTexture = "/Textures/Interface/VerbIcons/outfit.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/outfit.svg.192dpi.png"; } protected override void Activate(IEntity user, InventoryComponent component) diff --git a/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs index 1a0e35e3f0..64afba87e5 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs @@ -472,7 +472,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage } data.Text = Loc.GetString(component.Open ? "Close" : "Open"); - data.IconTexture = component.Open ? "/Textures/Interface/VerbIcons/close.svg.96dpi.png" : "/Textures/Interface/VerbIcons/open.svg.96dpi.png"; + data.IconTexture = component.Open ? "/Textures/Interface/VerbIcons/close.svg.96dpi.png" : "/Textures/Interface/VerbIcons/open.svg.192dpi.png"; } void IExAct.OnExplosion(ExplosionEventArgs eventArgs) diff --git a/Content.Server/GameObjects/Components/PDA/PDAComponent.cs b/Content.Server/GameObjects/Components/PDA/PDAComponent.cs index 2c66f014b1..d3df3f4bd8 100644 --- a/Content.Server/GameObjects/Components/PDA/PDAComponent.cs +++ b/Content.Server/GameObjects/Components/PDA/PDAComponent.cs @@ -380,7 +380,7 @@ namespace Content.Server.GameObjects.Components.PDA data.Text = Loc.GetString("Eject ID"); data.Visibility = component.IdSlotEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible; - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, PDAComponent component) @@ -402,7 +402,7 @@ namespace Content.Server.GameObjects.Components.PDA data.Text = Loc.GetString("Eject Pen"); data.Visibility = component.PenSlotEmpty ? VerbVisibility.Invisible : VerbVisibility.Visible; - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, PDAComponent component) @@ -423,7 +423,7 @@ namespace Content.Server.GameObjects.Components.PDA } data.Text = Loc.GetString("Toggle flashlight"); - data.IconTexture = "/Textures/Interface/VerbIcons/light.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/light.svg.192dpi.png"; } protected override void Activate(IEntity user, PDAComponent component) diff --git a/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/BaseCharger.cs b/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/BaseCharger.cs index 59b302faee..17562ce01a 100644 --- a/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/BaseCharger.cs +++ b/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/BaseCharger.cs @@ -141,7 +141,7 @@ namespace Content.Server.GameObjects.Components.Power.ApcNetComponents.PowerRece var heldItemName = Loc.GetString(handsComponent.GetActiveHand.Owner.Name); data.Text = Loc.GetString("Insert {0}", heldItemName); - data.IconTexture = "/Textures/Interface/VerbIcons/insert.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/insert.svg.192dpi.png"; } protected override void Activate(IEntity user, BaseCharger component) @@ -180,7 +180,7 @@ namespace Content.Server.GameObjects.Components.Power.ApcNetComponents.PowerRece var containerItemName = Loc.GetString(component._container.ContainedEntity.Name); data.Text = Loc.GetString("Eject {0}", containerItemName); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, BaseCharger component) diff --git a/Content.Server/GameObjects/Components/Power/PowerCellSlotComponent.cs b/Content.Server/GameObjects/Components/Power/PowerCellSlotComponent.cs index 77b70fbb16..7272994f19 100644 --- a/Content.Server/GameObjects/Components/Power/PowerCellSlotComponent.cs +++ b/Content.Server/GameObjects/Components/Power/PowerCellSlotComponent.cs @@ -193,7 +193,7 @@ namespace Content.Server.GameObjects.Components.Power else { data.Text = Loc.GetString("Eject cell"); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } if (component.Cell == null || !component.CanRemoveCell) diff --git a/Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs b/Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs index bd704e80ff..ed472ac576 100644 --- a/Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs +++ b/Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs @@ -51,7 +51,7 @@ namespace Content.Server.GameObjects.Components.Rotatable data.CategoryData = VerbCategories.Rotate; data.Text = Loc.GetString("Rotate clockwise"); - data.IconTexture = "/Textures/Interface/VerbIcons/rotate_cw.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; } protected override void Activate(IEntity user, RotatableComponent component) @@ -73,7 +73,7 @@ namespace Content.Server.GameObjects.Components.Rotatable data.CategoryData = VerbCategories.Rotate; data.Text = Loc.GetString("Rotate counter-clockwise"); - data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png"; } protected override void Activate(IEntity user, RotatableComponent component) diff --git a/Content.Server/GameObjects/Components/Strap/StrapComponent.cs b/Content.Server/GameObjects/Components/Strap/StrapComponent.cs index 0c426e2bb3..b4402c438c 100644 --- a/Content.Server/GameObjects/Components/Strap/StrapComponent.cs +++ b/Content.Server/GameObjects/Components/Strap/StrapComponent.cs @@ -193,7 +193,7 @@ namespace Content.Server.GameObjects.Components.Strap } data.Visibility = VerbVisibility.Visible; - data.IconTexture = buckle.BuckledTo == null ? "/Textures/Interface/VerbIcons/buckle.svg.96dpi.png" : "/Textures/Interface/VerbIcons/unbuckle.svg.96dpi.png"; + data.IconTexture = buckle.BuckledTo == null ? "/Textures/Interface/VerbIcons/buckle.svg.96dpi.png" : "/Textures/Interface/VerbIcons/unbuckle.svg.192dpi.png"; data.Text = Loc.GetString(buckle.BuckledTo == null ? "Buckle" : "Unbuckle"); } diff --git a/Content.Server/GameObjects/Components/Weapon/Ranged/Ammunition/AmmoBoxComponent.cs b/Content.Server/GameObjects/Components/Weapon/Ranged/Ammunition/AmmoBoxComponent.cs index e14f50555a..a4cf780e68 100644 --- a/Content.Server/GameObjects/Components/Weapon/Ranged/Ammunition/AmmoBoxComponent.cs +++ b/Content.Server/GameObjects/Components/Weapon/Ranged/Ammunition/AmmoBoxComponent.cs @@ -216,7 +216,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Ammunition data.Text = Loc.GetString("Dump 10"); data.Visibility = component.AmmoLeft > 0 ? VerbVisibility.Visible : VerbVisibility.Disabled; - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } protected override void Activate(IEntity user, AmmoBoxComponent component) diff --git a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/RevolverBarrelComponent.cs b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/RevolverBarrelComponent.cs index 840872c849..55b8de876b 100644 --- a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/RevolverBarrelComponent.cs +++ b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/RevolverBarrelComponent.cs @@ -294,7 +294,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels } data.Visibility = component.ShotsLeft > 0 ? VerbVisibility.Visible : VerbVisibility.Disabled; - data.IconTexture = "/Textures/Interface/VerbIcons/refresh.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/refresh.svg.192dpi.png"; } protected override void Activate(IEntity user, RevolverBarrelComponent component) diff --git a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerBatteryBarrelComponent.cs b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerBatteryBarrelComponent.cs index 8aa481a44e..9f4630c517 100644 --- a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerBatteryBarrelComponent.cs +++ b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerBatteryBarrelComponent.cs @@ -308,7 +308,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels else { data.Text = Loc.GetString("Eject cell"); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; } } diff --git a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerMagazineBarrelComponent.cs b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerMagazineBarrelComponent.cs index 91484f1421..9d102091c5 100644 --- a/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerMagazineBarrelComponent.cs +++ b/Content.Server/GameObjects/Components/Weapon/Ranged/Barrels/ServerMagazineBarrelComponent.cs @@ -463,7 +463,7 @@ namespace Content.Server.GameObjects.Components.Weapon.Ranged.Barrels } data.Text = Loc.GetString("Eject magazine"); - data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/eject.svg.192dpi.png"; if (component.MagNeedsOpenBolt) { data.Visibility = component.HasMagazine && component.BoltOpen diff --git a/Content.Server/GlobalVerbs/DeleteVerb.cs b/Content.Server/GlobalVerbs/DeleteVerb.cs index b3fffdf913..aa8764e429 100644 --- a/Content.Server/GlobalVerbs/DeleteVerb.cs +++ b/Content.Server/GlobalVerbs/DeleteVerb.cs @@ -33,7 +33,7 @@ namespace Content.Server.GlobalVerbs data.Text = Loc.GetString("Delete"); data.CategoryData = VerbCategories.Debug; data.Visibility = VerbVisibility.Visible; - data.IconTexture = "/Textures/Interface/VerbIcons/delete.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/delete.svg.192dpi.png"; } public override void Activate(IEntity user, IEntity target) diff --git a/Content.Server/GlobalVerbs/MakeSentientVerb.cs b/Content.Server/GlobalVerbs/MakeSentientVerb.cs index 585ac62a9f..d96866eba4 100644 --- a/Content.Server/GlobalVerbs/MakeSentientVerb.cs +++ b/Content.Server/GlobalVerbs/MakeSentientVerb.cs @@ -31,7 +31,7 @@ namespace Content.Server.GlobalVerbs data.Visibility = VerbVisibility.Visible; data.Text = Loc.GetString("Make Sentient"); data.CategoryData = VerbCategories.Debug; - data.IconTexture = "/Textures/Interface/VerbIcons/sentient.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/sentient.svg.192dpi.png"; } } diff --git a/Content.Server/GlobalVerbs/PointingVerb.cs b/Content.Server/GlobalVerbs/PointingVerb.cs index 8d2e33d456..af5ec92fe7 100644 --- a/Content.Server/GlobalVerbs/PointingVerb.cs +++ b/Content.Server/GlobalVerbs/PointingVerb.cs @@ -18,7 +18,7 @@ namespace Content.Server.GlobalVerbs public override void GetData(IEntity user, IEntity target, VerbData data) { data.Visibility = VerbVisibility.Invisible; - data.IconTexture = "/Textures/Interface/VerbIcons/point.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/point.svg.192dpi.png"; if (!user.HasComponent()) { diff --git a/Content.Server/GlobalVerbs/RejuvenateVerb.cs b/Content.Server/GlobalVerbs/RejuvenateVerb.cs index bd60c83fa6..ecfdbf364d 100644 --- a/Content.Server/GlobalVerbs/RejuvenateVerb.cs +++ b/Content.Server/GlobalVerbs/RejuvenateVerb.cs @@ -26,7 +26,7 @@ namespace Content.Server.GlobalVerbs data.Text = Loc.GetString("Rejuvenate"); data.CategoryData = VerbCategories.Debug; data.Visibility = VerbVisibility.Invisible; - data.IconTexture = "/Textures/Interface/VerbIcons/rejuvenate.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/rejuvenate.svg.192dpi.png"; var groupController = IoCManager.Resolve(); diff --git a/Content.Server/GlobalVerbs/SetAnchorVerb.cs b/Content.Server/GlobalVerbs/SetAnchorVerb.cs index 9c6b1f03c4..52306028a0 100644 --- a/Content.Server/GlobalVerbs/SetAnchorVerb.cs +++ b/Content.Server/GlobalVerbs/SetAnchorVerb.cs @@ -17,7 +17,7 @@ namespace Content.Server.GlobalVerbs { data.CategoryData = VerbCategories.Debug; data.Visibility = VerbVisibility.Invisible; - data.IconTexture = "/Textures/Interface/VerbIcons/anchor.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/anchor.svg.192dpi.png"; var groupController = IoCManager.Resolve(); diff --git a/Content.Server/HardRotateVerbs.cs b/Content.Server/HardRotateVerbs.cs index 82c8a05e0c..a9d7918db3 100644 --- a/Content.Server/HardRotateVerbs.cs +++ b/Content.Server/HardRotateVerbs.cs @@ -18,7 +18,7 @@ namespace Content.Server { data.Visibility = VerbVisibility.Visible; data.Text = "Rotate CCW"; - data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png"; } public override void Activate(IEntity user, IEntity target) @@ -36,7 +36,7 @@ namespace Content.Server { data.Visibility = VerbVisibility.Visible; data.Text = "Rotate CW"; - data.IconTexture = "/Textures/Interface/VerbIcons/rotate_cw.svg.96dpi.png"; + data.IconTexture = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png"; } public override void Activate(IEntity user, IEntity target) diff --git a/Content.Shared/GameObjects/Verbs/VerbCategories.cs b/Content.Shared/GameObjects/Verbs/VerbCategories.cs index 80a7c131c1..04cca69c8a 100644 --- a/Content.Shared/GameObjects/Verbs/VerbCategories.cs +++ b/Content.Shared/GameObjects/Verbs/VerbCategories.cs @@ -8,7 +8,7 @@ namespace Content.Shared.GameObjects.Verbs public static class VerbCategories { public static readonly VerbCategoryData Debug = - ("Debug", "/Textures/Interface/VerbIcons/debug.svg.96dpi.png"); + ("Debug", "/Textures/Interface/VerbIcons/debug.svg.192dpi.png"); public static readonly VerbCategoryData Rotate = ("Rotate", null); public static readonly VerbCategoryData Construction = ("Construction", null); diff --git a/Resources/Textures/Interface/VerbIcons/anchor.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/anchor.svg.192dpi.png new file mode 100644 index 0000000000..9a81102dd1 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/anchor.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/anchor.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/anchor.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/anchor.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/anchor.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/anchor.svg.96dpi.png deleted file mode 100644 index 256ff9d960..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/anchor.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/buckle.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/buckle.svg.192dpi.png new file mode 100644 index 0000000000..c34cce2d37 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/buckle.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/buckle.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/buckle.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/buckle.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/buckle.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/buckle.svg.96dpi.png deleted file mode 100644 index 6eb8f793c2..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/buckle.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/close.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/close.svg.192dpi.png new file mode 100644 index 0000000000..7a7f9768bc Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/close.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/close.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/close.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/close.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/close.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/close.svg.96dpi.png deleted file mode 100644 index e813db2f05..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/close.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/debug.svg b/Resources/Textures/Interface/VerbIcons/debug.svg index 10911baa94..0185a8ec55 100644 --- a/Resources/Textures/Interface/VerbIcons/debug.svg +++ b/Resources/Textures/Interface/VerbIcons/debug.svg @@ -7,16 +7,16 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - viewBox="0 0 6.3499998 6.3500002" + width="32" + height="32" + viewBox="0 0 8.4666664 8.4666669" version="1.1" id="svg8" sodipodi:docname="debug.svg" - inkscape:version="1.0 (4035a4fb49, 2020-05-01)" - inkscape:export-filename="/home/pj/Projects/space-station-14/Resources/Textures/Interface/VerbIcons/debug.svg.96dpi.png" - inkscape:export-xdpi="96" - inkscape:export-ydpi="96"> + inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)" + inkscape:export-filename="C:\Users\Pieter-Jan Briers\Projects\space-station-14\Resources\Textures\Interface\VerbIcons\debug.svg.192dpi.png" + inkscape:export-xdpi="192" + inkscape:export-ydpi="192"> @@ -48,7 +48,7 @@ image/svg+xml - + @@ -57,47 +57,51 @@ inkscape:groupmode="layer" id="layer1" transform="translate(-0.35898988,-0.29466516)"> - - - - - - - - + + + + + + + + + + diff --git a/Resources/Textures/Interface/VerbIcons/debug.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/debug.svg.192dpi.png new file mode 100644 index 0000000000..5bf7f3b9ce Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/debug.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/debug.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/debug.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/debug.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/debug.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/debug.svg.96dpi.png deleted file mode 100644 index 8a92e5184f..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/debug.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/delete.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/delete.svg.192dpi.png new file mode 100644 index 0000000000..45275bc45e Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/delete.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/delete.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/delete.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/delete.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/delete.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/delete.svg.96dpi.png deleted file mode 100644 index 6791c6d2a9..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/delete.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/eject.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/eject.svg.192dpi.png new file mode 100644 index 0000000000..63d95aa993 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/eject.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/eject.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/eject.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/eject.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/eject.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/eject.svg.96dpi.png deleted file mode 100644 index 9deb09fefc..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/eject.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/examine.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/examine.svg.192dpi.png new file mode 100644 index 0000000000..643e338c21 Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/examine.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/examine.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/examine.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/examine.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/examine.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/examine.svg.96dpi.png deleted file mode 100644 index 9fb190330a..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/examine.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/group.svg.192dpi.png b/Resources/Textures/Interface/VerbIcons/group.svg.192dpi.png new file mode 100644 index 0000000000..8b81e1134b Binary files /dev/null and b/Resources/Textures/Interface/VerbIcons/group.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/VerbIcons/group.svg.192dpi.png.yml b/Resources/Textures/Interface/VerbIcons/group.svg.192dpi.png.yml new file mode 100644 index 0000000000..5c43e23305 --- /dev/null +++ b/Resources/Textures/Interface/VerbIcons/group.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/VerbIcons/group.svg.96dpi.png b/Resources/Textures/Interface/VerbIcons/group.svg.96dpi.png deleted file mode 100644 index 989a785a7b..0000000000 Binary files a/Resources/Textures/Interface/VerbIcons/group.svg.96dpi.png and /dev/null differ diff --git a/Resources/Textures/Interface/VerbIcons/in.svg b/Resources/Textures/Interface/VerbIcons/in.svg index 3068243951..014cdb81df 100644 --- a/Resources/Textures/Interface/VerbIcons/in.svg +++ b/Resources/Textures/Interface/VerbIcons/in.svg @@ -56,7 +56,7 @@ objecttolerance="10" gridtolerance="10" guidetolerance="10" - inkscape:pageopacity="1" + inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1051" @@ -68,7 +68,8 @@ inkscape:window-x="-9" inkscape:window-y="-9" inkscape:window-maximized="1" - inkscape:current-layer="g859"> + inkscape:current-layer="g859" + inkscape:document-rotation="0"> + inkscape:current-layer="g859" + inkscape:document-rotation="0" + inkscape:pagecheckerboard="true">