Reverb Send Curve Asset: Difference between revisions

From COD Engine Research
mNo edit summary
mNo edit summary
 
Line 4: Line 4:
The reverbsendcurve asset is only used in Ghosts. It uses the same structure as the sndcurve and lpfcurve assets.
The reverbsendcurve asset is only used in Ghosts. It uses the same structure as the sndcurve and lpfcurve assets.
<source lang="cpp">
<source lang="cpp">
struct ReverbSendCurve
struct ReverbCurve
{
{
const char *filename;
const char *filename;

Latest revision as of 17:54, 27 December 2014

The reverbsendcurve asset is only used in Ghosts. It uses the same structure as the sndcurve and lpfcurve assets.

struct ReverbCurve
{
	const char *filename;
	unsigned __int16 knotCount;
	vec2_t knots[16];	
};