mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2025-01-09 03:07:41 -03:00
[Tekken Tag Tournament 2] Add ultrawide zoom and culling fixes, plus a FOV pack
Thanks @Flextape05 for these fixes!
This commit is contained in:
parent
a7df307d81
commit
27b4898314
6 changed files with 120 additions and 1 deletions
3
Mods/TekkenTagTournament2_FOV/patches.txt
Normal file
3
Mods/TekkenTagTournament2_FOV/patches.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[tekken32]
|
||||||
|
moduleMatches = 0x465EA719
|
||||||
|
0x106d2e24 = .float $fov #FOV/Zoom
|
26
Mods/TekkenTagTournament2_FOV/rules.txt
Normal file
26
Mods/TekkenTagTournament2_FOV/rules.txt
Normal file
|
@ -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
Resolutions/TekkenTagTournament2_Resolution/patches.txt
Normal file
5
Resolutions/TekkenTagTournament2_Resolution/patches.txt
Normal file
|
@ -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
|
|
@ -2,7 +2,7 @@
|
||||||
titleIds = 000500001010F800,0005000010110000
|
titleIds = 000500001010F800,0005000010110000
|
||||||
name = Resolution
|
name = Resolution
|
||||||
path = "Tekken Tag Tournament 2/Graphics/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
|
version = 4
|
||||||
|
|
||||||
[Preset]
|
[Preset]
|
||||||
|
@ -79,6 +79,62 @@ $height = 4320
|
||||||
$gameWidth = 1280
|
$gameWidth = 1280
|
||||||
$gameHeight = 720
|
$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
|
# TV
|
||||||
|
|
||||||
[TextureRedefine]
|
[TextureRedefine]
|
||||||
|
|
3
TekkenTagTournament2_FOV/patches.txt
Normal file
3
TekkenTagTournament2_FOV/patches.txt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[tekken32]
|
||||||
|
moduleMatches = 0x465EA719
|
||||||
|
0x106d2e24 = .float $fov #FOV/Zoom
|
26
TekkenTagTournament2_FOV/rules.txt
Normal file
26
TekkenTagTournament2_FOV/rules.txt
Normal file
|
@ -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
|
Loading…
Reference in a new issue