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.

24 lines
497 B

4 years ago
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class MoveTest : MonoBehaviour
  5. {
  6. private void Start()
  7. {
  8. // InvokeRepeating("Cube", 0.0f, 1.0f);
  9. }
  10. public void Stop()
  11. {
  12. this.gameObject.SetActive(false);
  13. }
  14. public void Start1()
  15. {
  16. this.gameObject.SetActive(true);
  17. }
  18. // Update is called once per frame
  19. /*void Cube()
  20. {
  21. //this.gameObject.SetActive(!gameObject.activeSelf);
  22. }*/
  23. }