| 178 | } |
| 179 | |
| 180 | void PSMoveController::OnTimeEvent(double time) |
| 181 | { |
| 182 | if (mVibronomeOn) |
| 183 | { |
| 184 | float length = 100; |
| 185 | if (TheTransport->GetQuantized(time, mTransportListenerInfo) == 0) |
| 186 | length = 200; |
| 187 | mVibration.Start(1, 0, length); |
| 188 | mMoveMgr.SetVibration(0, 1); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | void PSMoveController::FloatSliderUpdated(FloatSlider* slider, float oldVal, double time) |
| 193 | { |
nothing calls this directly
no test coverage detected