Skip to content

Commit 8069d0e

Browse files
committed
[Shadow Gens] Always Use Movie Shadow Skin (experimental)
1 parent ef3b2cb commit 8069d0e

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
Patch "Always Use Movie Shadow Skin (experimental)" in "Gameplay" by "Hyper & angryzor" does
2+
/*
3+
Always uses the Movie Shadow skin across the game.
4+
5+
Notes;
6+
- This requires the Sonic the Hedgehog 3 Movie Pack DLC.
7+
8+
Known issues;
9+
- Stage-specific animations and cutscenes outside of the Tokyo mission will not be animated properly.
10+
*/
11+
{
12+
WriteAsmHook
13+
(
14+
$@"
15+
mov al, 2
16+
ret
17+
",
18+
19+
/* v1.10.0.0: 0x146AF7E00 */
20+
ScanSignature
21+
(
22+
"\x40\x53\x48\x83\xEC\x20\x48\x89\xCB\xE8\xCC\xCC\xCC\xCC\x48\x89\xC2\x48\x89\xD9\xE8\xCC\xCC\xCC\xCC\x48\x85\xC0\x74\x15",
23+
"xxxxxxxxxx????xxxxxxx????xxxxx"
24+
),
25+
26+
HookBehavior.Replace
27+
);
28+
29+
WriteProtected<byte>
30+
(
31+
/* v1.10.0.0: 0x14060E211 */
32+
ScanSignature
33+
(
34+
"\x75\x55\x45\x33\xC0",
35+
"xxxxx"
36+
),
37+
38+
0xEB
39+
);
40+
}

0 commit comments

Comments
 (0)