Project290.Menus.VolumeControlDisplayEntry.Disappear C# (CSharp) Method

Disappear() private method

Has all scales go to 0.
private Disappear ( ) : void
return void
        private void Disappear()
        {
            foreach (tfloat tf in this.scales)
            {
                tf.GoTo(0, 0.1f, true);
            }
        }