Move default theme directory (#4022)

* Move default theme directory

* missed one
This commit is contained in:
Leon Friedrich
2023-05-12 15:50:58 +12:00
committed by GitHub
parent 7bc65a38fc
commit 3d3d6d38e0
4 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
- type: uiTheme
id: Default
path: /Textures/UserInterface/Default
path: /Textures/Interface/Default
colors:
# Root
rootBackground: "#000000"

View File

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 184 B

View File

Before

Width:  |  Height:  |  Size: 637 B

After

Width:  |  Height:  |  Size: 637 B

View File

@@ -723,7 +723,7 @@ namespace Robust.Client.Placement
}
else
{
sc.AddLayer(new ResPath("/Textures/UserInterface/tilebuildoverlay.png"));
sc.AddLayer(new ResPath("/Textures/Interface/tilebuildoverlay.png"));
}
sc.NoRotation = noRot;
@@ -737,7 +737,7 @@ namespace Robust.Client.Placement
private void PreparePlacementTile()
{
var sc = SetupPlacementOverlayEntity();
sc.AddLayer(new ResPath("/Textures/UserInterface/tilebuildoverlay.png"));
sc.AddLayer(new ResPath("/Textures/Interface/tilebuildoverlay.png"));
IsActive = true;
}