SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
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.

20 lines
436 B

4 years ago
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class Showing : MonoBehaviour
  6. {
  7. public GameObject openPanel;
  8. public GameObject raw;
  9. // Start is called before the first frame update
  10. public void Click()
  11. {
  12. openPanel.SetActive(true);
  13. }
  14. public void Click_2()
  15. {
  16. raw.SetActive(true);
  17. }
  18. // Update is called once per frame
  19. }