Making a microtuning script module in HISE

preview_player
Показать описание

Support my channel, thank you!:

HISE:

Credits:
Edited with Audacity & Kdenlive

#hise #sampler #scripting #tutorial
Рекомендации по теме
Комментарии
Автор

Oops! Looks like I made a mistake when calculating the coarse tuning. I'm only rounding down (Math.floor()) but that only works for positive values, for negative values we need to use Math.ceil(). Here's the corrected line:

local coarse = newTuning >= 0 ? Math.floor(newTuning / 100) : Math.ceil(newTuning / 100);

DHealey
visit shbcf.ru