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.
27 lines
532 B
27 lines
532 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class PanDing62 : MonoBehaviour
|
|
{
|
|
public PanDuan pd;
|
|
public Text text;
|
|
public JiShiQi jsq;
|
|
public void panding()
|
|
{
|
|
pd.选项[0]=true;
|
|
|
|
}
|
|
/// <summary>
|
|
/// 判定为错
|
|
/// </summary>
|
|
public void stoptext()
|
|
{
|
|
text.gameObject.SetActive(false);
|
|
text.gameObject.SetActive(true);
|
|
text.text = "00:00";
|
|
//pd.选项[0] = false;
|
|
}
|
|
}
|