| 30 | } |
| 31 | |
| 32 | void zParCmdFindClipVolumes() |
| 33 | { |
| 34 | char findname[64]; |
| 35 | |
| 36 | memset(sClipVolume, 0, sizeof(zVolume*) * 32); |
| 37 | for (sClipVolumeTotal = 0; sClipVolumeTotal < 32; sClipVolumeTotal++) |
| 38 | { |
| 39 | sprintf(findname, "PARTICLE_CLIP_%d", sClipVolumeTotal + 1); |
| 40 | zVolume* vol = (zVolume*)zSceneFindObject(xStrHash(findname)); |
| 41 | if (vol == NULL) |
| 42 | { |
| 43 | return; |
| 44 | } |
| 45 | sClipVolume[sClipVolumeTotal] = vol; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void xParCmdKillDistance_Update(xParCmd* c, xParGroup* ps, float) |
| 50 | { |
no test coverage detected