Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


oldRenderTexture

(Read Only) The value of RenderTexture.active at the time CreateRenderTargets is called.
Read time 1 minuteLast updated 6 days ago

Definition

public RenderTexture oldRenderTexture { get; }

Remarks

PaintContext.Cleanup uses this value to restore the active RenderTexture to its original value. In some cases, it may be necessary to manually restore the RenderTexture before calling Cleanup:
RenderTexture.active = PaintContext.oldRenderTexture;
Additional Resources: PaintContext, PaintContext.Cleanup