Files
taptap2024_GJ_chidouren/Assets/Scripts/System/Guide/GuideNode_Button.cs
2024-10-16 00:03:41 +08:00

16 lines
371 B
C#

using UnityEngine.UI;
namespace System.Guide
{
public class GuideNode_Button : GuideNode
{
public Button CompleteButton;
protected override void OnInit ()
{
if (!ReferenceEquals(CompleteButton, default))
{
this.CompleteButton.onClick.AddListener (this.NextNode);
}
}
}
}