Change default controls

This commit is contained in:
James Lambert 2023-09-28 20:29:16 -06:00
parent 81d446a80e
commit 80d7720a98
2 changed files with 6 additions and 4 deletions

View file

@ -141,13 +141,15 @@ That will generate the rom at `/build/portal64.z64`
<br />
## Current New Feature TODO List
- [ ] clear sleeping object physics flag so buttons in savefiles remain pressed after loading
- [ ] button prompts
- [ ] wake up objects after opening a portal under them
- [ ] rumble pak support?
- [ ] Investigate crash after falling into death water on test chamber 8
- [ ] Add auto save checkpoints
- [ ] Correct elevator timing
- [ ] Adding loading notice between levels #45
- [ ] pausing while glados is speaking can end her speech early
- [x] Adding loading notice between levels #45
- [x] clear sleeping object physics flag so buttons in savefiles remain pressed after loading
- [x] ball velocity in test chamber 11
- [x] wall in test chamber 07
- [x] near clipping plane when touching portals git

View file

@ -18,8 +18,8 @@ unsigned char gDefaultControllerSettings[ControllerActionSourceCount] = {
[ControllerActionSourceDLeftButton] = ControllerActionNone,
[ControllerActionSourceStartButton] = ControllerActionPause,
[ControllerActionSourceLTrig] = ControllerActionDuck,
[ControllerActionSourceRTrig] = ControllerActionJump,
[ControllerActionSourceZTrig] = ControllerActionUseItem,
[ControllerActionSourceRTrig] = ControllerActionUseItem,
[ControllerActionSourceZTrig] = ControllerActionJump,
[ControllerActionSourceJoystick] = ControllerActionRotate,
};