/// <summary>
 /// Apply the specified Post Process effect on the requested layer after rendering it
 /// </summary>
 public static void ApplyPostProcess(PostProcessRequest postProcessRequest, int layer)
 {
     _layers[layer - 1].ApplyPostProcess(postProcessRequest);
 }
Example #2
0
 /// <summary>
 /// Apply the specified Post Process effect on the layer after rendering it
 /// </summary>
 public void ApplyPostProcess(PostProcessRequest postProcessRequest)
 {
     _postProcessRequestCollection.Add(postProcessRequest);
 }