Go to the source code of this file.
|
void | _SndLog (string functionName, string msg) |
|
void | _SndEntLog (string className, string functionName, float edictNum, string warnMessage) |
|
void | Sound_Init (void) |
| Called by the client inside CSQC_Init(), and on the server inside init(). More...
|
|
void | Sound_Shutdown (void) |
| Called by CSQC_Shutdown() and in theory, somewhere on the server. More...
|
|
int | Sound_Precache (string sndDef) |
| Force the precache of a soundDef file. More...
|
|
void | Sound_Play (entity targetEntity, int sndChannel, string sndDef) |
| Play a soundDef on a given target entity. More...
|
|
void | Sound_PlayAt (vector worldPos, string sndDef) |
| Play a soundDef a a given location. More...
|
|
void | Sound_PlayLocal (string shader) |
| Client-side only: Play a sound locally, outside the game world. More...
|
|
void | Sound_Update (entity targetEntity, int sndChannel, int sndSample, float desiredVolume) |
| Client-side only: Update the sound parameters on a given entity. More...
|
|
int | Sound_GetID (string sndDef) |
|
void | Sound_Stop (entity target, int chan) |
| Stops sounds on a given channel, on a target entity. More...
|
|
void | Sound_DebugList () |
| Called by listSoundDef. More...
|
|