Animatroller.Framework.Effect.PopOut.Pop C# (CSharp) Method

Pop() public method

public Pop ( double startBrightness ) : PopOut
startBrightness double
return PopOut
        public PopOut Pop(double startBrightness)
        {
            this.startBrightness = startBrightness;

            base.sweeper.Reset();

            return this;
        }

Usage Example

示例#1
0
        private void TriggerThunderTimeline(object sender, Animatroller.Framework.Controller.Timeline <string> .TimelineEventArgs e)
        {
            switch (e.Code)
            {
            case "A":
                popOut3.Pop(1.0);
                popOut4.Pop(1.0);
                break;

            case "B":
                popOut2.Pop(0.5);
                break;

            case "C":
                popOut1.Pop(1.0);
                break;
            }
        }
All Usage Examples Of Animatroller.Framework.Effect.PopOut::Pop