注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
Unity助け合い所で「ダウンロードしてきた画像をボタンの背景にするには?」という質問があったので。 u... Unity助け合い所で「ダウンロードしてきた画像をボタンの背景にするには?」という質問があったので。 using UnityEngine; using System.Collections; public class TestButton : MonoBehaviour { [SerializeField] string imageUrl; UITexture texture; void Awake() { texture = GetComponent<UITexture>(); } IEnumerator Start() { WWW www = new WWW(imageUrl); yield return www; texture.mainTexture = www.texture; } }
2015/09/14 リンク