前提・実現したいこと
uniytでWebRequestsを使って、インターネット上の画像をオブジェクトに表示させたいと思っています。
発生している問題・エラーメッセージ
コード書くも画像が表示されない。
該当のソースコード
using System.Collections; using UnityEngine.Networking; using UnityEngine; public class Test : MonoBehaviour { // Start is called before the first frame update void Start() { StartCoroutine(GetText()); } IEnumerator GetText() { using (UnityWebRequest uwr = UnityWebRequestTexture.GetTexture("http://stage-re.com/wp/wp-content/uploads/2020/04/608e5f47defcf5c2441a441750bdc6cb.jpg")) { yield return uwr.SendWebRequest(); if (uwr.isNetworkError || uwr.isHttpError) { Debug.Log(uwr.error); } else { var texture = DownloadHandlerTexture.GetContent(uwr); } } } }
unityhp参照
試したこと
googleで調べたものの、あまり理解できなかった。
補足情報(FW/ツールのバージョンなど)
unity:2018.4.31f1
プログラミング言語:C#
回答1件
あなたの回答
tips
プレビュー