Advances the state by `deltaTime`. Returns whether the pulse is in the HIGH state. */
| 68 | |
| 69 | /** Advances the state by `deltaTime`. Returns whether the pulse is in the HIGH state. */ |
| 70 | bool process(float deltaTime) { |
| 71 | if (remaining > 0.f) { |
| 72 | remaining -= deltaTime; |
| 73 | return true; |
| 74 | } |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | bool getGate(int gateMode) { |
| 79 |
nothing calls this directly
no outgoing calls
no test coverage detected