i3e-asg2/Assets/assetStore/Grass And Flowers Pack 1/Example Scene/SimpleTextureDrawing.cs

17 lines
410 B
C#
Raw Normal View History

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class SimpleTextureDrawing : MonoBehaviour
{
public Material aMaterial;
public RenderTexture[] aTextures;
void OnGUI()
{
Graphics.DrawTexture(new Rect(Screen.width - 300, -2, 300, 300), aTextures[0], aMaterial);
Graphics.DrawTexture(new Rect(Screen.width - 300, 302, 300, 300), aTextures[1], aMaterial);
}
}