Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

//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);