| 21 | static xVec3 sDefaultShadowVec = { 0, 1.0f, 0 }; |
| 22 | |
| 23 | void zLightEffectSet(_zLight* zlight, S32 idx) |
| 24 | { |
| 25 | if (zlight->reg) |
| 26 | { |
| 27 | zlight->effect_idx = idx; |
| 28 | if (sEffectInitFuncs[zlight->effect_idx] != NULL) |
| 29 | { |
| 30 | sEffectInitFuncs[zlight->effect_idx](zlight); |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | void zLightResetAll(xEnv* env) |
| 36 | { |
no outgoing calls
no test coverage detected