Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Camera.RenderWithShader

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function RenderWithShader(shader: Shader, replacementTag: string): void;
public void RenderWithShader(Shader shader, string replacementTag);
public def RenderWithShader(shader as Shader, replacementTag as string) as void

Description

Render the camera with shader replacement.

See Rendering with Replaced Shaders page for details.

This will render the camera. It will use the camera's clear flags, target texture and all other settings.

The camera will not send OnPreCull, OnPreRender or OnPostRender to attached scripts. Image filters will not be rendered either.

This is used for special effects, e.g. rendering screenspace normal buffer of the whole scene, heat vision and so on. To make use of this feature, usually you create a camera and disable it. Then call RenderWithShader on it.

You are not able to call the Render function from a camera that is currently rendering. If you wish to do this create a copy of the camera, and make it match the original one using CopyFrom.

See Also: Rendering with Replaced Shaders, SetReplacementShader, Render.

	var heatVisionShader: Shader;

// Render tagged objects with a "heat vision" effect. camera.RenderWithShader(heatVisionShader, "VisibleWithHeatVision");
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Shader heatVisionShader;
    void Example() {
        camera.RenderWithShader(heatVisionShader, "VisibleWithHeatVision");
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public heatVisionShader as Shader

	def Example() as void:
		camera.RenderWithShader(heatVisionShader, 'VisibleWithHeatVision')