use of de.mossgrabers.launchpad.LaunchpadConfiguration in project DrivenByMoss by git-moss.
the class PlayView method initMaxVelocity.
private void initMaxVelocity() {
final int[] maxVelocity = new int[128];
final LaunchpadConfiguration config = this.surface.getConfiguration();
Arrays.fill(maxVelocity, config.getFixedAccentValue());
maxVelocity[0] = 0;
this.surface.setVelocityTranslationTable(config.isAccentActive() ? maxVelocity : this.defaultVelocity);
}
Aggregations