| 912 | } |
| 913 | |
| 914 | void zNPC_SNDInit() |
| 915 | { |
| 916 | sNPCSndID[eNPCSnd_GloveAttack] = 0; |
| 917 | sNPCSndID[eNPCSnd_SleepyAttack] = 0; |
| 918 | sNPCSndID[eNPCSnd_TubeAttack] = 0; |
| 919 | sNPCSndID[eNPCSnd_FodBzztAttack] = 0; |
| 920 | sNPCSndID[eNPCSnd_JellyfishAttack] = 0; |
| 921 | |
| 922 | sNPCSndFxVolume[eNPCSnd_GloveAttack] = 0.77f; |
| 923 | sNPCSndFxVolume[eNPCSnd_SleepyAttack] = 0.77f; |
| 924 | sNPCSndFxVolume[eNPCSnd_TubeAttack] = 0.77f; |
| 925 | sNPCSndFxVolume[eNPCSnd_FodBzztAttack] = 0.77f; |
| 926 | sNPCSndFxVolume[eNPCSnd_JellyfishAttack] = 0.77f; |
| 927 | |
| 928 | sNPCSndFx[eNPCSnd_GloveAttack] = xStrHash("Glove_hover_loop"); |
| 929 | sNPCSndFx[eNPCSnd_SleepyAttack] = xStrHash("ST_hit2_loop"); |
| 930 | sNPCSndFx[eNPCSnd_TubeAttack] = xStrHash("Tube_attack21_loop"); |
| 931 | sNPCSndFx[eNPCSnd_FodBzztAttack] = xStrHash("FodBzzt_attack_loop"); |
| 932 | sNPCSndFx[eNPCSnd_JellyfishAttack] = xStrHash("Jellyfish_zap_loop"); |
| 933 | } |
| 934 | |
| 935 | void zNPC_SNDPlay3D(_tageNPCSnd snd, xEnt* ent) |
| 936 | { |
no test coverage detected