Aiv.Fast2D.Example.WobbleEffect.Update C# (CSharp) Méthode

Update() public méthode

public Update ( Aiv.Fast2D.Window window ) : void
window Aiv.Fast2D.Window
Résultat void
        public override void Update(Window window)
        {
            this.wave += window.deltaTime * this.speed;
            screenMesh.shader.SetUniform("wave", this.wave);
        }