Package heronarts.lx.modulation
Interface LXCompoundModulation.Listener
- Enclosing class:
- LXCompoundModulation
public static interface LXCompoundModulation.Listener
Listener that is fired when there is a change to the list of modulations being
applied to a target parameter.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
modulationAdded
(LXCompoundModulation.Target parameter, LXCompoundModulation modulation) Fires when a new modulation is added to a parametervoid
modulationRemoved
(LXCompoundModulation.Target parameter, LXCompoundModulation modulation) Fires when a modulation is removed from a target parameter
-
Method Details
-
modulationAdded
Fires when a new modulation is added to a parameter- Parameters:
parameter
- Target parametermodulation
- Modulation that was added
-
modulationRemoved
Fires when a modulation is removed from a target parameter- Parameters:
parameter
- Target parametermodulation
- Modulation that was removed
-