Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Release()

Releases the RenderTexture.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public void Release()

Remarks

This function releases the hardware resources used by the render texture. The texture itself is not destroyed, and will be automatically created again when being used.
As with other "native engine object" types, it is important to pay attention to the lifetime of any render textures and release them when you are finished using them, as they will not be garbage collected like normal managed types.
Additional Resources: RenderTexture.Create, RenderTexture.IsCreated functions.