Aiv.Fast2D.PostProcessingEffect.Setup C# (CSharp) Method

Setup() public method

public Setup ( Aiv.Fast2D.Window window ) : void
window Aiv.Fast2D.Window
return void
        public void Setup(Window window)
        {
            renderTexture = new RenderTexture(window.Width, window.Height);
        }

Usage Example

Exemplo n.º 1
0
 public PostProcessingEffect SetPostProcessingEffect(int index, PostProcessingEffect effect)
 {
     effect.Setup(this);
     postProcessingEffects.Insert(index, effect);
     return(effect);
 }
All Usage Examples Of Aiv.Fast2D.PostProcessingEffect::Setup