The script is for advanced users and not beginners who do not know how to use a script.
I take you have not even read the description or instructions then ?? why do you want to use it ?
Retro Projects
8
Posts
1
Topics
16
Following
A member registered 53 days ago · View creator page →
Creator of
Recent community posts
CopperCube Advanced Scripting Template comments · Replied to nilefox717 in CopperCube Advanced Scripting Template comments
CopperCube Advanced Scripting Template comments · Replied to nilefox717 in CopperCube Advanced Scripting Template comments
CopperCube - upgraded API's v2 comments · Replied to Robo25 in CopperCube - upgraded API's v2 comments
CopperCube - upgraded API's v2 comments · Replied to Robo25 in CopperCube - upgraded API's v2 comments
//Distortion
var Gain = -18;
var Edge = 15;
var PostEQCenterFrequency = 2400;
var PostEQBandwidth = 2400;
var PreLowpassCutoff = 8000;
ccbPlaySound("Sound2D", false,"2D", "EnableSoundEffect","Distortion",Gain,Edge,PostEQCenterFrequency,PostEQBandwidth,PreLowpassCutoff);
//ParametricEqualizer
var Center = 8000;
var Bandwidth = 12;
var Gain = 0;
ccbPlaySound("Sound2D", false,"2D", "EnableSoundEffect","ParametricEqualizer",Center,Bandwidth,Gain);
//Reverb
var InGain = 0;
var ReverbMix = 0;
var ReverbTime = 1000;
var HFRatio = 0.001;
ccbPlaySound("Sound2D", false,"2D", "EnableSoundEffect","Reverb",InGain,ReverbMix,ReverbTime,HFRatio);
For anyone using Notepad++ then I've added all of these CopperCube++ methods
to a free downloadable UDL file here: https://retropixels.itch.io/coppercube-notepad-language-udl
Thanks for this update! I've added all your API ccb methods to my Notepad++ UDL file here: https://retropixels.itch.io/coppercube-notepad-language-udl
CopperCube - upgraded API's v2 comments · Replied to huffelduff in CopperCube - upgraded API's v2 comments
I'm looking for this soundfx list also but now startedto use the CopperCube++ API that has some great customisable sound fx https://vazahat.itch.io/coppercube-plus-plus
Any chance you could add custom parameters to each effect as in the coppercube++ API.

