mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00
New Version 1.5
New Button in Sparta Vitro Mix. Improved Graphics.
This commit is contained in:
parent
df539708d7
commit
19901ee7a9
378 changed files with 4716 additions and 2981 deletions
16
Gutterball 3/Assets/ChargeTVImage.cs
Normal file
16
Gutterball 3/Assets/ChargeTVImage.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue