본문 바로가기

프로그램 공부/Unity 함수

특정시간을 주고 호출되는 함수 만들기

https://hyunity3d.tistory.com/367

 

유니티 특정 시간마다 호출되는 함수 만들기.

특정 시간마다 호출되는 함수를 만들고 싶을수 있습니다. using UnityEngine; using System.Collections; public class CsGameManager : MonoBehaviour { private float TimeLeft = 2.0f; private float nextTime..

hyunity3d.tistory.com