This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// New Year Bell 2024.12.31 aike | |
include("osc.mmm") | |
include("env.mmm") | |
include("filter.mmm") | |
fn osc(freq) { | |
sinwave(freq,0.0) | |
} | |
fn filterDelay(sig, sec) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 1D Perlin Noise Modulator for Cubase ModScripter | |
// by aike | |
// MIT License | |
// | |
getDescription = function () { | |
return "Perlin Noise"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ Chord detection KONTAKT script by aike } | |
{ This program is licensed under MIT License. } | |
on init | |
set_ui_height_px(470) | |
set_ui_width_px(970) | |
make_perfview | |
set_script_title("main") | |
set_control_par_str($INST_WALLPAPER_ID, $CONTROL_PAR_PICTURE, "panel") | |
set_skin_offset(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on init | |
declare %map[128] | |
declare $n := 0 | |
while($n < 128) | |
%map[$n] := $n | |
inc($n) | |
end while | |
%map[13] := 36 { BD } | |
%map[14] := 36 { BD } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- KONTAKT sample file loader for CREATOR TOOLS | |
local path = "C:/work/Samples" | |
for _, file in filesystem.directoryRecursive(path) do | |
if filesystem.isRegularFile(file) then | |
if filesystem.extension(file) == ".wav" then | |
print(file) | |
local z = Zone() | |
z.file = file | |
instrument.groups[0].zones:add(z) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
Radio button like keyswitch | |
The pressed key indicates selected state. | |
} | |
on init | |
set_key_pressed_support(1) | |
declare $n := 48 | |
while ($n < 60) | |
set_key_color($n, $KEY_COLOR_RED) | |
inc($n) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on init | |
message("") | |
set_ui_height_px(250) | |
make_perfview | |
declare ui_knob $X(-1000000,1000000,1) | |
move_control_px($X, 500, 140) | |
$X := 600000 | |
declare ui_knob $Y(-1000000,1000000,1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
1D Perlin Noise for KONTAKT KSP | |
reference: | |
http://adrianb.io/2014/08/09/perlinnoise.html | |
https://gist.github.com/Flafla2/f0260a861be0ebdeef76 | |
example: | |
~pn_ax := 0.1 | |
call perlin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Don't Believe AI | |
// Chrome Extension | |
// | |
window.onload = function() { | |
const stickynote = document.createElement("div"); | |
Object.assign(stickynote.style, { | |
position: "absolute", | |
top: "10px", | |
right: "40px", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
3D Perlin Noise for KONTAKT KSP | |
reference: | |
http://adrianb.io/2014/08/09/perlinnoise.html | |
https://gist.github.com/Flafla2/f0260a861be0ebdeef76 | |
example: | |
~pn_ax := 0.1 | |
~pn_ay := 0.0 |
NewerOlder