Example #1
0
        public input_item(Devices.DeviceKeys key, float progress, ColorSpectrum spectrum)
        {
            this.key      = key;
            this.progress = progress;
            this.spectrum = spectrum;

            type = input_type.Spectrum;
        }
Example #2
0
        public input_item(Devices.DeviceKeys key, float progress, AnimationMix animation)
        {
            this.key       = key;
            this.progress  = progress;
            this.animation = animation;

            type = input_type.AnimationMix;
        }