[펌] 웹 페이지 상의 이미지를 읽어와 출력하기
Unity3D/Script / 2018. 12. 21. 13:30
웹 페이지를 여는 방법을 찾고 있었는데....조금 다른 것이 들어왔네요 ㅎ
웹 상에 노출되어 있는 이미지 url를 입력하면 유니티 내에서 볼 수 있게 해 주는 코드입니다.
구글 클라우드에 있는 것들을 가져오면 앨범도 만들어 볼 수 있겠습니다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class example : MonoBehaviour
{
public string url = "https://community.arm.com/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-20-66/6180.mali_2D00_shield_2D00_2.png";
IEnumerator Start()
{
WWW www = new WWW(url);
yield return www;
Renderer renderer = GetComponent<Renderer>();
renderer.material.mainTexture = www.texture;
}
}
반응형
'Unity3D > Script' 카테고리의 다른 글
[펌] 타임서버에서 시각 가져와서 Unity 에서 사용하기 (NST, NIST) (0) | 2019.04.15 |
---|---|
[펌] Async-Await instead of coroutines in Unity 2017 (0) | 2019.02.21 |
[펌] Unity C# – Coroutine 알아보기 (0) | 2018.09.07 |
[펌] StopCoroutine() 의 활용 2 - Coroutine continue failure (0) | 2018.04.13 |
Unity3D MonoBehaviour Lifecycle(흐름도) (0) | 2017.12.20 |