You've already forked taptap2024_GJ_chidouren
16 lines
371 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
} |