Move slot UI files around (#11282)

* Move files around for themes
This commit is contained in:
wrexbe
2022-09-14 17:13:28 -07:00
committed by GitHub
parent f9c8f6efe4
commit 34dfba2619
69 changed files with 3 additions and 3 deletions

View File

@@ -118,7 +118,7 @@ namespace Content.Client.HUD
}
dir = proto.Path;
var resourcePath = (new ResourcePath("/Textures/Interface/Inventory") / dir) / path;
var resourcePath = (new ResourcePath("/Textures/Interface/") / dir) / "Slots" / path;
return _resourceCache.GetTexture(resourcePath);
}

View File

@@ -30,7 +30,7 @@ namespace Content.Client.Hands.UI
private readonly HandsComponent _handsComponent;
private string StorageTexture => "back.png";
private Texture BlockedTexture => _resourceCache.GetTexture("/Textures/Interface/Inventory/blocked.png");
private Texture BlockedTexture => _resourceCache.GetTexture("/Textures/Interface/Default/blocked.png");
private ItemStatusPanel StatusPanel { get; }