1. 다음 프레임에 실행
- javascript : yield;
- C# : yield return null;
2. FixedUpdate 이후에 실행
- javascript : yield new WaitForFixedUpdate();
- C# : yield return new WaitForFixedUpdate();
3. x초 이후에 실행( 소수점 가능하나 크게 티나지 않음 - float형 )
- javascript : yield new WaitForSeconds(x);
- C# : yield return new WaitForSeconds(x);
4. 프레임이 끝난 후 실행
- javascript : yield new WaitForEndOfFrame();
- C# : yield return new WaitForEndOfFrame();
'IT_Games > Unity3D' 카테고리의 다른 글
Unity3D Android GCM Integration (0) | 2013.08.06 |
---|---|
EZGUI 사용시 Unity3D 4.1 버전업하고 발생하는 에러 해결방법 (0) | 2013.07.01 |
[unity3d][C#] 효과적인 C# 메모리 관리 기법 (0) | 2013.06.24 |
[펌] Unity3D 를 활용한 3D 컨텐츠 개발 (0) | 2013.06.20 |
[펌] [UNITY] UI 해상도 대응하기! (0) | 2013.06.20 |