mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-07-13 10:24:19 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cf829a9eca | |||
| 5e8695a157 |
@@ -460,7 +460,7 @@ The team behind Unleashed Recompiled does not currently have any plans to port m
|
|||||||
|
|
||||||
- [Goalringmod27](https://linktr.ee/goalringmod27): Concept Artist behind the achievements overlay shown during gameplay. Aided in the creation of the Transparency Anti-Aliasing thumbnail.
|
- [Goalringmod27](https://linktr.ee/goalringmod27): Concept Artist behind the achievements overlay shown during gameplay. Aided in the creation of the Transparency Anti-Aliasing thumbnail.
|
||||||
|
|
||||||
- [M&M](https://github.com/ActualMandM): Provisional support for dynamic UI aspect ratio.
|
- [RagdollClash](https://github.com/RagdollClash): Provisional support for dynamic UI aspect ratio.
|
||||||
|
|
||||||
- [DaGuAr](https://twitter.com/TheDaguar): Provided Spanish localization for the custom menus alongside Darío.
|
- [DaGuAr](https://twitter.com/TheDaguar): Provided Spanish localization for the custom menus alongside Darío.
|
||||||
|
|
||||||
|
|||||||
@@ -195,3 +195,11 @@ bool SparkleLocusMidAsmHook()
|
|||||||
// This has the side effect of the locus particle eventually snapping to the rest position during pause, but it's better than vertices exploding.
|
// This has the side effect of the locus particle eventually snapping to the rest position during pause, but it's better than vertices exploding.
|
||||||
return App::s_deltaTime < (1.0 / 60.0);
|
return App::s_deltaTime < (1.0 / 60.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CEvilSonicContext_CStateWall_LeaveRotationMidAsmHook(PPCRegister& f1)
|
||||||
|
{
|
||||||
|
// The code in the Werehog's "wall" state for leaving walls adds a constant
|
||||||
|
// value of 0.05 to his transform every frame. This makes the value respect
|
||||||
|
// delta time whilst maintaining the original behaviour at 30 FPS.
|
||||||
|
f1.f64 = f1.f64 * (std::min(App::s_deltaTime, 1.0 / 15.0) / (1.0 / 30.0));
|
||||||
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ inline std::array<const char*, 17> g_credits =
|
|||||||
"LJSTAR",
|
"LJSTAR",
|
||||||
"saguinee",
|
"saguinee",
|
||||||
"Goalringmod27",
|
"Goalringmod27",
|
||||||
"M&M",
|
"RagdollClash",
|
||||||
"DaGuAr",
|
"DaGuAr",
|
||||||
"brianuuuSonic",
|
"brianuuuSonic",
|
||||||
"Kitzuku"
|
"Kitzuku"
|
||||||
|
|||||||
@@ -1141,3 +1141,15 @@ registers = ["r3"]
|
|||||||
name = "EndingTextPositionMidAsmHook"
|
name = "EndingTextPositionMidAsmHook"
|
||||||
address = 0x82580168
|
address = 0x82580168
|
||||||
registers = ["r31", "f13"]
|
registers = ["r31", "f13"]
|
||||||
|
|
||||||
|
# Wall Leave - Left
|
||||||
|
[[midasm_hook]]
|
||||||
|
name = "CEvilSonicContext_CStateWall_LeaveRotationMidAsmHook"
|
||||||
|
address = 0x824067BC
|
||||||
|
registers = ["f1"]
|
||||||
|
|
||||||
|
# Wall Leave - Right
|
||||||
|
[[midasm_hook]]
|
||||||
|
name = "CEvilSonicContext_CStateWall_LeaveRotationMidAsmHook"
|
||||||
|
address = 0x82406774
|
||||||
|
registers = ["f1"]
|
||||||
|
|||||||
Reference in New Issue
Block a user