This commit is contained in:
2025-05-22 10:16:04 +08:00
parent b0abc1c30a
commit fa586fccac
115 changed files with 3440 additions and 19 deletions

View File

@@ -4,6 +4,7 @@ using System.Collections.Generic;
using System.Reflection;
using UnityEngine;
using FairyGUI;
using NBC;
namespace NBF
{
@@ -48,11 +49,14 @@ namespace NBF
public void Use1()
{
if (string.IsNullOrEmpty(_interactiveData.Use1)) return;
Debug.Log(_interactiveData.Use1);
UI.Inst.OpenUI<FishingShop>();
}
public void Use2()
{
if (string.IsNullOrEmpty(_interactiveData.Use2)) return;
Debug.Log(_interactiveData.Use2);
}
}
}