using System.Collections; using System.Collections.Generic; using UnityEngine; using Cinemachine; using UnityEngine.SceneManagement; using UnityEngine.UI; using DG.Tweening; using System; public class Canvas2 : MonoSingleton { public AudioClip[] ac; AudioSource audioSource; public GameObject tip2; public GameObject step2_1; public GameObject step2_2; public Animator animator; public GameObject errorTip; public GameObject step2_3; public bool isHasHX; public AnimationClip[] huXiClip; public Operate operates1; public Operate operates2; public Operate operates3; public Transform cmpos; public Transform cmposq; protected override void Awake() { base.Awake(); isHasHX = UnityEngine.Random.value >= 0.5 ? true : false; } private void Start() { audioSource = GetComponent(); EventManager.Instance.register("NextAc", NextAc); EventManager.Instance.register("ActionTwoEnd", ActionTwoEnd); EventManager.Instance.register("guancha", Guancha); tip2.SetActive(true); Invoke("JTTX",3); GameObject obj = Instantiate(Resources.Load("operate"), GameObject.FindWithTag("Grid").transform); operates1 = obj.GetComponent(); operates1.str = TaskInfo.task4info; operates1.color = TaskInfo.color3; } void InitLevel2() { tip2.GetComponentInChildren().str = "请选择正确的部位进行拍打询问"; tip2.SetActive(false); step2_1.SetActive(true); tip2.SetActive(true); } void Guancha(params object[] data) { audioSource.clip = ac[1]; audioSource.Play(); } public void ActionOne(bool inspect) { if (inspect) { step2_1.SetActive(false); audioSource.clip = ac[0]; audioSource.Play(); animator.SetTrigger("Huhuan"); } else { errorTip.SetActive(true); errorTip.GetComponentInChildren().InitThis("当前拍打部位错误,请重试"); } } void NextAc(params object[] data) { GameObject obj = Instantiate(Resources.Load("operate"), GameObject.FindWithTag("Grid").transform); operates2 = obj.GetComponent(); obj.GetComponent().str = TaskInfo.task5info; operates2.color = TaskInfo.color3; operates1.color = TaskInfo.color4; tip2.GetComponentInChildren().str = "请选择正确的部位进行观察被救者的呼吸"; tip2.SetActive(false); tip2.SetActive(true); step2_2.SetActive(true); } void ActionTwoEnd(params object[] data) { step2_3.SetActive(true); Debug.Log("asdad"); } public void ActionTwo(bool inspect) { if (inspect) { step2_2.SetActive(false); animator.SetTrigger("Tuoyi"); } else { errorTip.SetActive(true); errorTip.GetComponentInChildren().InitThis("当前观察部位错误,请重试"); } } public void JTTX() { FindObjectOfType().transform.position = cmpos.position; FindObjectOfType().transform.rotation = cmpos.rotation; StartCoroutine(WaitExecute(()=> { FindObjectOfType().transform.position = cmposq.position; FindObjectOfType().transform.rotation = cmposq.rotation; animator.SetTrigger("TXEnd"); }, 5)); StartCoroutine(WaitExecute(InitLevel2, 6)); } IEnumerator WaitExecute(Action action,float t) { yield return new WaitForSeconds(t); action(); } }