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.
33 lines
646 B
33 lines
646 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Level24
|
|
{
|
|
public class Level24Manager : MonoBehaviour
|
|
{
|
|
public Level09.Level09Manager level09Manager;
|
|
|
|
|
|
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
public void SetBtnImg(GameObject img)
|
|
{
|
|
bool active = img.gameObject.activeSelf;
|
|
img.gameObject.SetActive(!active);
|
|
}
|
|
|
|
public void SetBtnValue(int index)
|
|
{
|
|
level09Manager.AddAnSwer(index);
|
|
}
|
|
}
|
|
}
|
|
|