25 lines
593 B
C#
25 lines
593 B
C#
using DefaultNamespace;
|
|
using Framework.Manager;
|
|
using MotionFramework;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class btnMaterialStackingComponent : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(delegate
|
|
{
|
|
if (MotionEngine.GetModule<GlobalDataStorage>().ExamName == "¿â´æÎï×ʱ¨·ÏÁ÷³Ì")
|
|
{
|
|
TutorialGuideManager.Instance.TriggerNextGuide();
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
}
|