You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
3.7 KiB
126 lines
3.7 KiB
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<Canvas2>
|
|
{
|
|
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<AudioSource>();
|
|
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<GameObject>("operate"), GameObject.FindWithTag("Grid").transform);
|
|
operates1 = obj.GetComponent<Operate>();
|
|
operates1.str = TaskInfo.task4info;
|
|
operates1.color = TaskInfo.color3;
|
|
}
|
|
|
|
|
|
|
|
void InitLevel2()
|
|
{
|
|
tip2.GetComponentInChildren<Tip>().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<ErrorTip>().InitThis("当前拍打部位错误,请重试");
|
|
}
|
|
}
|
|
void NextAc(params object[] data) {
|
|
GameObject obj = Instantiate(Resources.Load<GameObject>("operate"), GameObject.FindWithTag("Grid").transform);
|
|
operates2 = obj.GetComponent<Operate>();
|
|
obj.GetComponent<Operate>().str = TaskInfo.task5info;
|
|
operates2.color = TaskInfo.color3;
|
|
|
|
operates1.color = TaskInfo.color4;
|
|
tip2.GetComponentInChildren<Tip>().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<ErrorTip>().InitThis("当前观察部位错误,请重试");
|
|
}
|
|
}
|
|
|
|
public void JTTX() {
|
|
FindObjectOfType<CinemachineVirtualCamera>().transform.position = cmpos.position;
|
|
FindObjectOfType<CinemachineVirtualCamera>().transform.rotation = cmpos.rotation;
|
|
StartCoroutine(WaitExecute(()=> {
|
|
FindObjectOfType<CinemachineVirtualCamera>().transform.position = cmposq.position;
|
|
FindObjectOfType<CinemachineVirtualCamera>().transform.rotation = cmposq.rotation;
|
|
animator.SetTrigger("TXEnd");
|
|
}, 5));
|
|
StartCoroutine(WaitExecute(InitLevel2, 6));
|
|
|
|
}
|
|
|
|
IEnumerator WaitExecute(Action action,float t) {
|
|
yield return new WaitForSeconds(t);
|
|
action();
|
|
}
|
|
}
|