Newer
Older
Dreamsturbia-Project-IADE-Unity3D / Assets / Scripts / CameraEffect.cs
@Rackday Rackday on 21 Aug 302 bytes Project Added
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CameraEffect : MonoBehaviour
{
    public Material material;

    private void OnRenderImage(RenderTexture source, RenderTexture destination)
    {
        Graphics.Blit(source, destination,material);
    }
}