Adds a bunch of UI icons for verbs. (#3007)

Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
This commit is contained in:
Swept
2021-03-14 13:23:32 +00:00
committed by GitHub
parent 13afec5f76
commit 3dba752193
84 changed files with 1469 additions and 18 deletions

View File

@@ -380,6 +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";
}
protected override void Activate(IEntity user, PDAComponent component)
@@ -401,6 +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";
}
protected override void Activate(IEntity user, PDAComponent component)
@@ -421,6 +423,7 @@ namespace Content.Server.GameObjects.Components.PDA
}
data.Text = Loc.GetString("Toggle flashlight");
data.IconTexture = "/Textures/Interface/VerbIcons/light.svg.96dpi.png";
}
protected override void Activate(IEntity user, PDAComponent component)