You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
306 B
C#
12 lines
306 B
C#
using UnityEngine;
|
|
|
|
[ExecuteInEditMode]
|
|
[AddComponentMenu("Image Effects/Sepia Tone")]
|
|
public class SepiaToneEffect : ImageEffectBase {
|
|
|
|
// Called by camera to apply image effect
|
|
void OnRenderImage (RenderTexture source, RenderTexture destination) {
|
|
Graphics.Blit (source, destination, material);
|
|
}
|
|
}
|