mirror of
https://github.com/Steffo99/bleach-beach.git
synced 2024-12-04 19:04:19 +00:00
12 lines
238 B
C#
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");
|
|
}
|
|
}
|