예제 #1
0
 protected void DoPostDefault(RenderTexture src, RenderTexture dest)
 {
     if (nextPostProcess != null)
     {
         nextPostProcess.OnPostProcess(src, dest);
     }
     else
     {
         Graphics.Blit(src, dest);
     }
 }