Aiv.Fast2D.PostProcessingEffect.Setup C# (CSharp) Метод

Setup() публичный Метод

public Setup ( Aiv.Fast2D.Window window ) : void
window Aiv.Fast2D.Window
Результат void
        public void Setup(Window window)
        {
            renderTexture = new RenderTexture(window.Width, window.Height);
        }

Usage Example

Пример #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