| 188 | } |
| 189 | |
| 190 | void PSMoveMgr::SetVibration(int id, float amount) |
| 191 | { |
| 192 | if (mMove[id] == NULL) |
| 193 | return; |
| 194 | |
| 195 | psmove_set_rumble(mMove[id], int(amount * 255)); |
| 196 | } |
| 197 | |
| 198 | void PSMoveMgr::SetColor(int id, float r, float g, float b) |
| 199 | { |
no test coverage detected