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); } } } }