Skip to content

Commit

Permalink
[Tekken Tag Tournament 2] Add ultrawide zoom and culling fixes, plus …
Browse files Browse the repository at this point in the history
…a FOV pack

Thanks @Flextape05 for these fixes!
  • Loading branch information
Flextape05 authored Dec 12, 2024
1 parent a7df307 commit 27b4898
Show file tree
Hide file tree
Showing 6 changed files with 120 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Mods/TekkenTagTournament2_FOV/patches.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[tekken32]
moduleMatches = 0x465EA719
0x106d2e24 = .float $fov #FOV/Zoom
26 changes: 26 additions & 0 deletions Mods/TekkenTagTournament2_FOV/rules.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[Definition]
titleIds = 000500001010F800,0005000010110000
name = Field of View
path = "Tekken Tag Tournament 2/Graphics/FOV"
description = Changes the FOV of the game for aspect ratio patches. Made by Flextape05
version = 4

[Preset]
name = Default FOV
$fov = 0.017453292

[Preset]
name = Match 16:9 horizontal FOV to 21:9
$fov = 0.022907446

[Preset]
name = High FOV for 21:9
$fov = 0.026

[Preset]
name = FOV for 32:9
$fov = 0.028

[Preset]
name = FOV for 48:9
$fov = 0.0285
5 changes: 5 additions & 0 deletions Resolutions/TekkenTagTournament2_Resolution/patches.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[tekken32]
moduleMatches = 0x465EA719
0x10433450 = .float $width/$height #Main aspect ratio
0x101798a4 = .float (0.017453292 * (($width/$height)/($gameWidth/$gameHeight))) #Culling
0x1072d978 = .float (0.017453292 * (($width/$height)/($gameWidth/$gameHeight))) #Props culling
58 changes: 57 additions & 1 deletion Resolutions/TekkenTagTournament2_Resolution/rules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
titleIds = 000500001010F800,0005000010110000
name = Resolution
path = "Tekken Tag Tournament 2/Graphics/Resolution"
description = Changes the resolution of the game.
description = Changes the resolution of the game. Aspect ratio patch Made by Flextape05
version = 4

[Preset]
Expand Down Expand Up @@ -79,6 +79,62 @@ $height = 4320
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 2560x1080(21:9)
$width = 2560
$height = 1080
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 3440x1440(21:9)
$width = 3440
$height = 1440
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 5120x2160(21:9)
$width = 2560
$height = 1080
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 6880x2880(21:9)
$width = 3440
$height = 1440
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 3840x1080(32:9)
$width = 3840
$height = 1080
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 5120x1440(32:9)
$width = 5120
$height = 1440
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 5760x1080(48:9)
$width = 5760
$height = 1080
$gameWidth = 1280
$gameHeight = 720

[Preset]
name = 7680x1440(48:9)
$width = 5120
$height = 1440
$gameWidth = 1280
$gameHeight = 720

# TV

[TextureRedefine]
Expand Down
3 changes: 3 additions & 0 deletions TekkenTagTournament2_FOV/patches.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[tekken32]
moduleMatches = 0x465EA719
0x106d2e24 = .float $fov #FOV/Zoom
26 changes: 26 additions & 0 deletions TekkenTagTournament2_FOV/rules.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[Definition]
titleIds = 000500001010F800,0005000010110000
name = Field of View
path = "Tekken Tag Tournament 2/Graphics/FOV"
description = Changes the FOV of the game for aspect ratio patches. Made by Flextape05
version = 4

[Preset]
name = Default FOV
$fov = 0.017453292

[Preset]
name = Match 16:9 horizontal FOV to 21:9
$fov = 0.022907446

[Preset]
name = High FOV for 21:9
$fov = 0.026

[Preset]
name = FOV for 32:9
$fov = 0.028

[Preset]
name = FOV for 48:9
$fov = 0.0285

0 comments on commit 27b4898

Please sign in to comment.