yield return new waitforseconds 관련
Unity Tip / 2017. 1. 25. 00:03
while(true)
{
//내용
yield return new waitforseconds(1f);
}
이런 식으로 하면
코루틴 돌때마다 불필요한 힙할당이 생겨서 가비지를 발생시킨다.
고로
waitforsecond delay = new waitforsecond(1);
while (true)
{
yield return delay;
}
위에 처럼 아예 처음에 정해두고
하는게 좋다고 한다.
'Unity Tip' 카테고리의 다른 글
셔플 ~_~ (0) | 2017.08.25 |
---|---|
Initialize Unity Extensions: Must have a valid path for plugin에러 (0) | 2017.03.02 |
GPGS 업데이트 알림 팝업 방지와 GPGS 이전 버전으로 돌아가기. (2) | 2017.02.20 |
'There are inconsistent line endings...' 해결하기. (0) | 2016.10.09 |
유니티 해상도 설정하기 (0) | 2016.10.05 |