728x90
728x90
SMALL
기본 HTTP 통신이 느리다고 생각되어 에셋을 사용해보았고,
확실히 더 빠른 이미지 로딩을 볼 수 있었다.
Asset 링크
샘플 링크
간단한 사용법
string address = string.Format(url);
HTTPRequest request = new HTTPRequest(new System.Uri(address));
// 시간초과 기준 10초
request.Timeout = TimeSpan.FromSeconds(10.0);
Texture2D TargetTexture = await request.GetAsTexture2DAsync();
BackGround.texture = TargetTexture;
BackGround.color = Color.white;
request.Dispose();
request.Clear();
위 사용법은 샘플을 보고 간단히 이미지 로드 관련 코드를 작성한 것이다.
유료 에셋인게 단점이지만 중요한 프로젝트라면 사용해도 좋을 것 같다 :)
728x90
728x90
LIST
'EXPERIENCE > Unity' 카테고리의 다른 글
[Unity/iOS] 아이폰 버전 및 LiDAR 여부 체크하는 플러그인 코드 (0) | 2022.12.26 |
---|---|
[Unity/iOS] 아이폰 설정 화면 진입하는 플러그인 코드 (0) | 2022.12.26 |
[Unity/iOS] 앱 설정 화면 진입하는 플러그인 코드 (0) | 2022.12.26 |
[Unity/Android] Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules ERROR 해결방법 (0) | 2022.12.26 |
[Unity/Android] ClassNotFoundException: Didn't find class ERROR 해결방법 (0) | 2022.12.26 |