blob: 8284bb247963b40eb8f1ef0d666effdab0232f71 (
plain)
1
2
3
4
5
6
7
8
|
namespace UnityEngine.PostProcessing;
public abstract class PostProcessingComponentRenderTexture<T> : PostProcessingComponent<T> where T : PostProcessingModel
{
public virtual void Prepare(Material material)
{
}
}
|