mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 12:47:58 +03:00
tr2/lara/col: fix right backwards step frame range
This fixes the frame range used to test if Lara should step off a step backwards with her right foot. Resolves #1602.
This commit is contained in:
parent
78a9619d91
commit
d5c076513a
3 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
## [Unreleased](https://github.com/LostArtefacts/TRX/compare/tr2-0.8...develop) - ××××-××-××
|
||||
- added Linux builds and toolchain (#1598)
|
||||
- fixed Lara activating triggers one frame too early (#2205, regression from 0.7)
|
||||
- fixed Lara never stepping backwards off a step using her right foot (#1602)
|
||||
|
||||
## [0.8](https://github.com/LostArtefacts/TRX/compare/tr2-0.8...tr2-0.8) - 2025-01-01
|
||||
- completed decompilation efforts – TR2X.dll is gone, Tomb2.exe no longer needed (#1694)
|
||||
|
|
|
@ -55,6 +55,7 @@ game with new enhancements and features.
|
|||
- fixed Lara prioritising throwing a spent flare while mid-air, so to avoid missing ledge grabs
|
||||
- fixed Lara at times not being able to jump immediately after going from her walking to running animation
|
||||
- fixed looking forward too far causing an upside down camera frame
|
||||
- fixed Lara never stepping backwards off a step using her right foot
|
||||
- fixed the following floor data issues:
|
||||
- **Opera House**: fixed the trigger under item 203 to trigger it rather than item 204
|
||||
- **Wreck of the Maria Doria**: fixed room 98 not having water
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
#define LF_RUN_R_FOOT_GROUND 14
|
||||
#define LF_RUN_R_END 21
|
||||
|
||||
#define LF_BACK_R_START 964
|
||||
#define LF_BACK_R_END 993
|
||||
#define LF_BACK_R_START 26
|
||||
#define LF_BACK_R_END 55
|
||||
|
||||
#define LF_WADE_L_START 0
|
||||
#define LF_WADE_L_END 9
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue