diff --git a/.DS_Store b/.DS_Store index ac0b85d7..28426ceb 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Assets/.DS_Store b/Assets/.DS_Store index bcadb398..c7d52e7c 100644 Binary files a/Assets/.DS_Store and b/Assets/.DS_Store differ diff --git a/Assets/StreamingAssets/.DS_Store b/Assets/StreamingAssets/.DS_Store index 898c0e50..fdd22ddd 100644 Binary files a/Assets/StreamingAssets/.DS_Store and b/Assets/StreamingAssets/.DS_Store differ diff --git a/Assets/_/Features/UI.meta b/Assets/_/Features/UI.meta index bfa2da53..7ff68763 100644 --- a/Assets/_/Features/UI.meta +++ b/Assets/_/Features/UI.meta @@ -1,3 +1,3 @@ fileFormatVersion: 2 -guid: 1af87ae38a8c4cc392838e512ee0a5a7 -timeCreated: 1753972331 \ No newline at end of file +guid: 9d93f672c88e468a91bf9a1881447d3d +timeCreated: 1760972259 \ No newline at end of file diff --git a/Assets/_/Features/UI/.DS_Store b/Assets/_/Features/UI/.DS_Store deleted file mode 100644 index ab1251a8..00000000 Binary files a/Assets/_/Features/UI/.DS_Store and /dev/null differ diff --git a/Assets/_/Features/UI/Runtime.meta b/Assets/_/Features/UI/Runtime.meta index 282ce22b..06ba8479 100644 --- a/Assets/_/Features/UI/Runtime.meta +++ b/Assets/_/Features/UI/Runtime.meta @@ -1,3 +1,3 @@ fileFormatVersion: 2 -guid: 70056d884cd64fc182b3fb1051cf37f6 -timeCreated: 1753972353 \ No newline at end of file +guid: c7346c50ac9344e887b8f4b585e19507 +timeCreated: 1760972269 \ No newline at end of file diff --git a/Assets/_/Features/UI/Runtime/.DS_Store b/Assets/_/Features/UI/Runtime/.DS_Store deleted file mode 100644 index 6af426cb..00000000 Binary files a/Assets/_/Features/UI/Runtime/.DS_Store and /dev/null differ diff --git a/Assets/_/Features/UI/Runtime/Adventurers.meta b/Assets/_/Features/UI/Runtime/Adventurers.meta index 0573b706..b38e1652 100644 --- a/Assets/_/Features/UI/Runtime/Adventurers.meta +++ b/Assets/_/Features/UI/Runtime/Adventurers.meta @@ -1,3 +1,3 @@ fileFormatVersion: 2 -guid: 2d3f76b5fab34eb4a7a72108fc94d9ff -timeCreated: 1754227951 \ No newline at end of file +guid: 6fb8b539b31e4439bab43c1385c6091c +timeCreated: 1760972333 \ No newline at end of file diff --git a/Assets/_/Features/UI/Runtime/Adventurers/.DS_Store b/Assets/_/Features/UI/Runtime/Adventurers/.DS_Store deleted file mode 100644 index 0836295c..00000000 Binary files a/Assets/_/Features/UI/Runtime/Adventurers/.DS_Store and /dev/null differ diff --git a/Assets/_/Features/UI/Runtime/Adventurers/AdventurerCardSelectionnable.cs b/Assets/_/Features/UI/Runtime/Adventurers/AdventurerCardSelectionnable.cs deleted file mode 100644 index 6ef90800..00000000 --- a/Assets/_/Features/UI/Runtime/Adventurers/AdventurerCardSelectionnable.cs +++ /dev/null @@ -1,91 +0,0 @@ -using System; -using Adventurer.Runtime; -using Core.Runtime; -using EventSystem.Runtime; -using Quests.Runtime; -using UnityEngine; -using UnityEngine.UI; - -namespace GameUI.Runtime -{ - public class AdventurerCardSelectionnable : BaseMonoBehaviour - { - - #region Publics - - public Sprite m_selectedSprite; - public Sprite m_unselectedSprite; - public GameObject m_BGSprite; - - #endregion - - - #region Unity API - - void Start() - { - _adventurer = GetComponent().Adventurer; - } - - void Update() - { - if (_isSelected) - { - m_BGSprite.GetComponent().sprite = m_selectedSprite; - } - else - { - m_BGSprite.GetComponent().sprite = m_unselectedSprite; - } - } - - #endregion - - - #region Main Methods - - public void OnClick() - { - if (!QuestManager.Instance.CanSelectedAdventurers()) - { - gameObject.GetComponent