[Add] Unitask

This commit is contained in:
2026-02-28 19:33:34 +07:00
parent e24b30743b
commit 159cfd49a9
341 changed files with 72787 additions and 10 deletions
+6 -6
View File
@@ -35,15 +35,15 @@ namespace YachtDice.UI
"Шанс"
};
private YachtCategory[] allCategories;
private YachtCategory[] _allCategories;
private void Awake()
{
allCategories = (YachtCategory[])Enum.GetValues(typeof(YachtCategory));
_allCategories = (YachtCategory[])Enum.GetValues(typeof(YachtCategory));
for (int i = 0; i < categoryRows.Count && i < allCategories.Length; i++)
for (int i = 0; i < categoryRows.Count && i < _allCategories.Length; i++)
{
categoryRows[i].Initialize(allCategories[i], CategoryNames[i]);
categoryRows[i].Initialize(_allCategories[i], CategoryNames[i]);
categoryRows[i].OnCategorySelected += HandleCategorySelected;
}
@@ -52,9 +52,9 @@ namespace YachtDice.UI
public void UpdatePreviews(Dictionary<YachtCategory, int> previews)
{
for (int i = 0; i < categoryRows.Count && i < allCategories.Length; i++)
for (int i = 0; i < categoryRows.Count && i < _allCategories.Length; i++)
{
if (previews.TryGetValue(allCategories[i], out int preview))
if (previews.TryGetValue(_allCategories[i], out int preview))
{
categoryRows[i].ShowPreview(preview);
categoryRows[i].SetInteractable(true);