Gets custom tint intensity from TechnoTypes & Warheads.
| 194 | |
| 195 | // Gets custom tint intensity from TechnoTypes & Warheads. |
| 196 | int TechnoExt::GetCustomTintIntensity(TechnoClass* pThis) |
| 197 | { |
| 198 | int dummy = 0; |
| 199 | int intensity = 0; |
| 200 | TechnoExt::ApplyCustomTintValues(pThis, dummy, intensity); |
| 201 | return intensity; |
| 202 | } |
| 203 | |
| 204 | // Applies custom tint color and intensity from TechnoTypes and any AttachEffects and shields it might have on provided values. |
| 205 | void TechnoExt::ApplyCustomTintValues(TechnoClass* pThis, int& color, int& intensity) |
nothing calls this directly
no outgoing calls
no test coverage detected