ChilloutVR Vehicle Controls
Vehicle controls for various controllers are listed here.
Keyboard
Function | Key | Notes |
---|---|---|
Handbrake | Spacebar | VERY touchy. |
Start/Stop Engine | I
|
|
Low-beams | L | If enabled on the car. |
High-beams | K | If enabled on the car. |
Right Indicator | E | If enabled on the car. |
Left Indicator | Q | If enabled on the car. |
Hazards | Z | If enabled on the car. |
Gear-shift Up | Left Shift | |
Gear-shift Down | Left Ctrl | |
Neutral Gear | N | |
Boost | F | If enabled on the car. |
Camera | C | ??? |
// Token: 0x04000505 RID: 1285 public KeyCode handbrakeKB = KeyCode.Space; // Token: 0x04000506 RID: 1286 public KeyCode startEngineKB = KeyCode.I; // Token: 0x04000507 RID: 1287 public KeyCode lowBeamHeadlightsKB = KeyCode.L; // Token: 0x04000508 RID: 1288 public KeyCode highBeamHeadlightsKB = KeyCode.K; // Token: 0x04000509 RID: 1289 public KeyCode rightIndicatorKB = KeyCode.E; // Token: 0x0400050A RID: 1290 public KeyCode leftIndicatorKB = KeyCode.Q; // Token: 0x0400050B RID: 1291 public KeyCode hazardIndicatorKB = KeyCode.Z; // Token: 0x0400050C RID: 1292 public KeyCode shiftGearUp = KeyCode.LeftShift; // Token: 0x0400050D RID: 1293 public KeyCode shiftGearDown = KeyCode.LeftControl; // Token: 0x0400050E RID: 1294 public KeyCode NGear = KeyCode.N; // Token: 0x0400050F RID: 1295 public KeyCode boostKB = KeyCode.F; // Token: 0x04000510 RID: 1296 public KeyCode slowMotionKB = KeyCode.G; // Token: 0x04000511 RID: 1297 public KeyCode changeCameraKB = KeyCode.C; // Token: 0x04000512 RID: 1298 public KeyCode recordKB = KeyCode.R; // Token: 0x04000513 RID: 1299 public KeyCode playbackKB = KeyCode.P; // Token: 0x04000514 RID: 1300 public KeyCode lookBackKB = KeyCode.B;
Xbox 360 Controller
// Token: 0x04000515 RID: 1301 public KeyCode trailerAttachDetach = KeyCode.T; // Token: 0x04000516 RID: 1302 public string Xbox_verticalInput = "Xbox_Vertical"; // Token: 0x04000517 RID: 1303 public string Xbox_horizontalInput = "Xbox_Horizontal"; // Token: 0x04000518 RID: 1304 public string Xbox_triggerLeftInput = "Xbox_TriggerLeft"; // Token: 0x04000519 RID: 1305 public string Xbox_triggerRightInput = "Xbox_TriggerRight"; // Token: 0x0400051A RID: 1306 public string Xbox_mouseXInput = "Xbox_MouseX"; // Token: 0x0400051B RID: 1307 public string Xbox_mouseYInput = "Xbox_MouseY"; // Token: 0x0400051C RID: 1308 public string Xbox_handbrakeKB = "Xbox_B"; // Token: 0x0400051D RID: 1309 public string Xbox_startEngineKB = "Xbox_Y"; // Token: 0x0400051E RID: 1310 public string Xbox_lowBeamHeadlightsKB = "Xbox_LB"; // Token: 0x0400051F RID: 1311 public string Xbox_highBeamHeadlightsKB = "Xbox_RB"; // Token: 0x04000520 RID: 1312 public string Xbox_indicatorKB = "Xbox_DPadHorizontal"; // Token: 0x04000521 RID: 1313 public string Xbox_hazardIndicatorKB = "Xbox_DPadVertical"; // Token: 0x04000522 RID: 1314 public string Xbox_shiftGearUp = "Xbox_RB"; // Token: 0x04000523 RID: 1315 public string Xbox_shiftGearDown = "Xbox_LB"; // Token: 0x04000524 RID: 1316 public string Xbox_boostKB = "Xbox_A"; // Token: 0x04000525 RID: 1317 public string Xbox_changeCameraKB = "Xbox_Back"; // Token: 0x04000526 RID: 1318 public string Xbox_lookBackKB = "Xbox_ClickRight"; // Token: 0x04000527 RID: 1319 public string Xbox_trailerAttachDetach = "Xbox_ClickLeft";
PS4 Controller
// Token: 0x04000528 RID: 1320 public string PS4_verticalInput = "PS4_Vertical"; // Token: 0x04000529 RID: 1321 public string PS4_horizontalInput = "PS4_Horizontal"; // Token: 0x0400052A RID: 1322 public string PS4_triggerLeftInput = "PS4_TriggerLeft"; // Token: 0x0400052B RID: 1323 public string PS4_triggerRightInput = "PS4_TriggerRight"; // Token: 0x0400052C RID: 1324 public string PS4_mouseXInput = "PS4_MouseX"; // Token: 0x0400052D RID: 1325 public string PS4_mouseYInput = "PS4_MouseY"; // Token: 0x0400052E RID: 1326 public string PS4_handbrakeKB = "PS4_B"; // Token: 0x0400052F RID: 1327 public string PS4_startEngineKB = "PS4_Y"; // Token: 0x04000530 RID: 1328 public string PS4_lowBeamHeadlightsKB = "PS4_LB"; // Token: 0x04000531 RID: 1329 public string PS4_highBeamHeadlightsKB = "PS4_RB"; // Token: 0x04000532 RID: 1330 public string PS4_indicatorKB = "PS4_DPadHorizontal"; // Token: 0x04000533 RID: 1331 public string PS4_hazardIndicatorKB = "PS4_DPadVertical"; // Token: 0x04000534 RID: 1332 public string PS4_shiftGearUp = "PS4_RB"; // Token: 0x04000535 RID: 1333 public string PS4_shiftGearDown = "PS4_LB"; // Token: 0x04000536 RID: 1334 public string PS4_boostKB = "PS4_A"; // Token: 0x04000537 RID: 1335 public string PS4_changeCameraKB = "PS4_Back"; // Token: 0x04000538 RID: 1336 public string PS4_lookBackKB = "PS4_ClickRight"; // Token: 0x04000539 RID: 1337 public string PS4_trailerAttachDetach = "PS4_ClickLeft";