cheers Robo, great work and don't over work yourself with updates!
Retro Projects
Creator of
Recent community posts
It would much simpler and would solve your issue if you purchased the pro licence. All you would then do is add this API execuatble as a custom binary in settings and your game executable will have all the new API's embedded into it. You will then have a single game executable and no other files needed to run it.
Without sounding rude, I'm not sure why the description and instructions don't easily explain that to you?
It's a UDL file for use with Notepad++ as the title states. It won't be any use to anyone who does not code scripts.
If you don't know what either are then search google as it's a very popular script editor.
Thanks for the advice but it's quite straight forward to use and a screenshot or video would be pointless. I've only uploaded it for the veterans of coppercube. Most users don't like coding or prefer to use ready made behaviours. This script is an alternative to the behaviours and actions, so you can't use it within the coppercube IDE.
I thought you were somekind of AI bot as you asked the same question to both of my assets after I uploaded them a 1 day ago. I didn't take your questions seriously.
//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
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.

