12345678910111213141516 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class FindGameObj : MonoBehaviour
- {
- // Start is called before the first frame update
- public GameObject showGame;
- public GameObject heidGames1, heidGames2;
- public void FindScanes()
- {
- showGame.SetActive(true);
- heidGames1.SetActive(false);
- heidGames2.SetActive(false);
- }
- }
|