mirror of
https://gitlab.acidiclight.dev/sociallydistant/sociallydistant.git
synced 2025-01-22 09:31:47 -05:00
Implement skeletal crafting UI
Signed-off-by: Ritchie Frodomar <alkalinethunder@gmail.com>
This commit is contained in:
parent
9fad87c32c
commit
03f381c027
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
using SociallyDistant.Core.Core;
|
||||
using SociallyDistant.Core.Core.Serialization;
|
||||
using YamlDotNet.Core.Tokens;
|
||||
|
||||
namespace SociallyDistant.Core.WorldData;
|
||||
|
||||
|
|
|
@ -259,8 +259,6 @@ public sealed class CraftingProgramController : ProgramController
|
|||
interactionButton.Text = "Insufficient Resources";
|
||||
interactionButton.Enabled = false;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -274,7 +272,7 @@ public sealed class CraftingProgramController : ProgramController
|
|||
itemBannerText.Text = $"<b><size=32>{data.Title.ToUpper()}</size></b>{Environment.NewLine}{data.Category}";
|
||||
itemDescription.Text = data.Description;
|
||||
}
|
||||
|
||||
|
||||
private async void OnInteract()
|
||||
{
|
||||
if (currentItem != null)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
using AcidicGUI.Widgets;
|
||||
using SociallyDistant.Core.Shell;
|
||||
|
||||
namespace SociallyDistant.UI.Tools.Crafting;
|
||||
|
|
Loading…
Reference in a new issue