mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00
16 lines
338 B
C#
16 lines
338 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ChargeTVImage : MonoBehaviour
|
|
{
|
|
public string urlImages;
|
|
|
|
IEnumerator Start()
|
|
{
|
|
WWW www = new WWW(urlImages);
|
|
yield return www;
|
|
GetComponent<RawImage>().texture = www.texture;
|
|
}
|
|
}
|