Merge pull request #10802 from iwubcode/graphics_mods_builtin_bloom

Add builtin graphics mods
This commit is contained in:
JMC47 2022-07-02 14:07:30 -04:00 committed by GitHub
commit d625c612c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 103 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{
"meta":
{
"title": "Bloom Removal",
"author": "Dolphin Team",
"description": "Skips drawing bloom effects. May be preferable when using a bloom solution from Dolphin's post processing shaders or a third party tool."
},
"features":
[
{
"group": "Bloom",
"action": "skip"
}
]
}

View File

@ -0,0 +1,14 @@
{
"meta":
{
"title": "Remove HUD",
"author": "Dolphin Team",
"description": "Skips drawing elements designated as the HUD. Can be used for taking screenshots or increasing immersion."
},
"features": [
{
"group": "HUD",
"action": "skip"
}
]
}

View File

@ -0,0 +1,20 @@
{
"meta":
{
"title": "Native Resolution Bloom",
"author": "Dolphin Team",
"description": "Scales bloom effects to draw at their native resolution, regardless of internal resolution. Results in bloom looking much more natural at higher resolutions but may cause shimmering."
},
"features":
[
{
"group": "Bloom",
"action": "scale",
"action_data": {
"X": 1.0,
"Y": 1.0,
"Z": 1.0
}
}
]
}

View File

@ -0,0 +1,27 @@
{
"meta":
{
"title": "Bloom Texture Definitions",
"author": "iwubcode"
},
"groups":
[
{
"name": "Bloom",
"targets": [
{
"type": "efb",
"texture_filename": "efb1_n000046_57x76_6"
},
{
"type": "efb",
"texture_filename": "efb1_n000045_114x152_6"
},
{
"type": "efb",
"texture_filename": "efb1_n000107_228x304_6"
}
]
}
]
}

View File

@ -0,0 +1,27 @@
{
"meta":
{
"title": "Bloom Texture Definitions",
"author": "iwubcode"
},
"groups":
[
{
"name": "Bloom",
"targets": [
{
"type": "efb",
"texture_filename": "efb1_n9_80x58_6"
},
{
"type": "efb",
"texture_filename": "efb1_n21_80x57_6"
},
{
"type": "efb",
"texture_filename": "efb1_n2_320x228_6"
}
]
}
]
}