1
Fork 0
mirror of https://github.com/Steffo99/bleach-beach.git synced 2024-12-04 19:04:19 +00:00
bleach-beach/Assets/Scripts/Invert.cs
2018-08-13 19:33:58 +02:00

12 lines
238 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Invert : MonoBehaviour {
public Shader shader;
void Start () {
Camera.main.SetReplacementShader(shader, "RenderType");
}
}