Reverb Send Curve Asset: Difference between revisions
Aerosoul94 (talk | contribs) Created page with "The reverbsendcurve asset is only used in Ghosts. It uses the same structure as the sndcurve and lpfcurve assets. <source lang="cpp"> struct ReverbSendCurve { const char *fil..." |
Aerosoul94 (talk | contribs) mNo edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | |||
[[Category:Assets]] | |||
[[Category:Ghosts]] | |||
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 | struct ReverbCurve | ||
{ | { | ||
const char *filename; | const char *filename; | ||
unsigned __int16 knotCount; | unsigned __int16 knotCount; | ||
vec2_t knots[16]; | |||
}; | }; | ||
</source> | </source> | ||
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];
};