반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- unity
- nodejs
- AWS
- logstash
- JS
- 구글
- Linux
- Ai
- build
- ChatGPT
- MSSQL
- Kibana
- API
- elasticsearch
- Python
- error
- docker
- JavaScript
- Git
- ssh
- 영어
- MySQL
- Windows
- sample
- 유니티
- s3
- 엘라스틱서치
- 설정
- mariadb
Archives
- Today
- Total
가끔 보자, 하늘.
Unity에서 다른 클래스의 코루틴 호출하기 본문
패치 모듈 만들다가 패치 모듈의 코루틴을 써야되는 상황일 때..
StartCoroutine은 non-static member function입니다.
결론만 간단히 ...
아래와 같이 활용하세요.
// 활용 코드
Test test = GameObject.Find("TestPrefab").GetComponent<Test>();
yield return test.StartCoroutine( test.startPatch());
(in Test.cs)
// 샘플 Test class 선언 형태
public class Test : MonoBehaviour
{
public IEmumerator startPatch(){
.
.
.
}
}
* TestPrefab을 만들어서 Test script 연결해 해당 씬에 등록하세요.
반응형
'개발 이야기 > 개발 및 서비스' 카테고리의 다른 글
socket.io-stream으로 파일 전송하기 (2) | 2015.04.13 |
---|---|
Coconut 서비스 관리툴... 오픈 예정입니다. (0) | 2015.04.09 |
Asset Bundle 작업 흐름의 강화 - Unity Manual/Architecture/Architecture HOWTOs/AssetBundles (0) | 2015.03.20 |
개요 - Unity Manual/Architecture/Architecture HOWTOs/AssetBundles (0) | 2015.03.20 |
BuildingAssetBundles in 5.x - Unity Manual/Architecture/Architecture HOWTOs/AssetBundles (0) | 2015.03.20 |