33 lines
622 B
C#
33 lines
622 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class UPcar : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// Éϳµ¹ý¶È¶¯»
|
|
/// </summary>
|
|
public void UPcarGU()
|
|
{
|
|
if (GameManage.isSelectQues)
|
|
{
|
|
|
|
|
|
QuestionControl.instance.ConmitQuestion(false);
|
|
GameManage.isSelectQues = false;
|
|
GameManage.instance.returnMap.gameObject.SetActive(true);
|
|
}
|
|
}
|
|
}
|