From d0540f19ac754e1fcebd3b3b75109f804bdce3ce Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 2 Jul 2022 00:02:02 -0500 Subject: [PATCH] Data: add built in mods for bloom and HUD --- .../All Games Bloom Removal/all.txt | 0 .../All Games Bloom Removal/metadata.json | 15 ++++++++++++++ .../GraphicMods/All Games HUD Removal/all.txt | 0 .../All Games HUD Removal/metadata.json | 14 +++++++++++++ .../All Games Native Resolution Bloom/all.txt | 0 .../metadata.json | 20 +++++++++++++++++++ 6 files changed, 49 insertions(+) create mode 100644 Data/Sys/Load/GraphicMods/All Games Bloom Removal/all.txt create mode 100644 Data/Sys/Load/GraphicMods/All Games Bloom Removal/metadata.json create mode 100644 Data/Sys/Load/GraphicMods/All Games HUD Removal/all.txt create mode 100644 Data/Sys/Load/GraphicMods/All Games HUD Removal/metadata.json create mode 100644 Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/all.txt create mode 100644 Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/metadata.json diff --git a/Data/Sys/Load/GraphicMods/All Games Bloom Removal/all.txt b/Data/Sys/Load/GraphicMods/All Games Bloom Removal/all.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Data/Sys/Load/GraphicMods/All Games Bloom Removal/metadata.json b/Data/Sys/Load/GraphicMods/All Games Bloom Removal/metadata.json new file mode 100644 index 0000000000..1dd6c8dcc1 --- /dev/null +++ b/Data/Sys/Load/GraphicMods/All Games Bloom Removal/metadata.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/Data/Sys/Load/GraphicMods/All Games HUD Removal/all.txt b/Data/Sys/Load/GraphicMods/All Games HUD Removal/all.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Data/Sys/Load/GraphicMods/All Games HUD Removal/metadata.json b/Data/Sys/Load/GraphicMods/All Games HUD Removal/metadata.json new file mode 100644 index 0000000000..ac08648ef4 --- /dev/null +++ b/Data/Sys/Load/GraphicMods/All Games HUD Removal/metadata.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/all.txt b/Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/all.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/metadata.json b/Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/metadata.json new file mode 100644 index 0000000000..0616392606 --- /dev/null +++ b/Data/Sys/Load/GraphicMods/All Games Native Resolution Bloom/metadata.json @@ -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 + } + } + ] +} \ No newline at end of file