| 121 | // Hover - currently under the users mouse focus |
| 122 | // Click - user is interacting with the control |
| 123 | enum class State { Disabled, Normal, Hover, Click } m_state = State::Normal; |
| 124 | |
| 125 | // To add a "swish" to things, controls can fade between states |
| 126 | float m_fTransition = 0.0; |
nothing calls this directly
no outgoing calls
no test coverage detected