28 lines
554 B
C#
28 lines
554 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Button_OnOff : MonoBehaviour
|
|
{
|
|
public GameObject button_Normal;
|
|
public GameObject button_Abnormal;
|
|
|
|
void Start()
|
|
{
|
|
button_Abnormal.SetActive(false);
|
|
button_Normal.SetActive(false);
|
|
}
|
|
|
|
public void Normal()
|
|
{
|
|
button_Normal.SetActive(true);
|
|
button_Abnormal.SetActive(false);
|
|
}
|
|
|
|
public void Abnormal()
|
|
{
|
|
button_Normal.SetActive(false);
|
|
button_Abnormal.SetActive(true);
|
|
}
|
|
}
|