| 56 | } |
| 57 | |
| 58 | float Key::AttackRemapFactor(uint32_t now_ms) { |
| 59 | if (mOn) { |
| 60 | return ::AttackRemapFactor(now_ms - mEventTime); |
| 61 | } else { |
| 62 | return 1.0; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | float Key::IntensityFactor() const { |
| 67 | return mIntensity; |
nothing calls this directly
no test coverage detected