-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Mod Creator new functions - UCAutoPatcher - UCResolutionPatcher - Fixed configs to work with multiple games now :)
- Loading branch information
1 parent
d8381e2
commit 9628407
Showing
6 changed files
with
447 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,236 @@ | ||
{ | ||
"Keys": { | ||
"freecam": { | ||
"Name": "FreeCam NEW", | ||
"Class": "bool", | ||
"Section": "main", | ||
"Auto": false, | ||
"Default": true, | ||
"Description": "UltraCam Beyond Freecam! NEWLY IMPROVED FREECAM from 2.0\nTurning this off will, not let you trigger freecam with controller.\n", | ||
"Config_Class": [ | ||
"UltraCam", | ||
"TriggerWithController" | ||
] | ||
}, | ||
"fps": { | ||
"Name": "FPS", | ||
"Class": "scale", | ||
"Section": "main", | ||
"Auto": false, | ||
"Values": [ | ||
20, | ||
240 | ||
], | ||
"Type": "s32", | ||
"Default": 60, | ||
"Increments": 5, | ||
"Description": "UltraCam Beyond New FPS setting.\nLet's you set to any FPS\nWARNING: SET TO 120 FPS FOR UNCAPPED.\nRecommended 30, 60 FPS caps for best FRAMETIMES.", | ||
"Config_Class": [ | ||
"Resolution", | ||
"MaxFramerate" | ||
] | ||
}, | ||
"menu fps": { | ||
"Name": "Menu FPS", | ||
"Class": "scale", | ||
"Section": "main", | ||
"Auto": false, | ||
"Values": [ | ||
20, | ||
120 | ||
], | ||
"Type": "s32", | ||
"Default": 60, | ||
"Increments": 5, | ||
"Description": "UltraCam Beyond NEW MENU FPS CAP. Set to your desire.", | ||
"Config_Class": [ | ||
"Features", | ||
"MenuFPSLock" | ||
] | ||
}, | ||
"fov": { | ||
"Name": "FOV", | ||
"Class": "scale", | ||
"Section": "main", | ||
"Auto": false, | ||
"Values": [ | ||
20, | ||
120 | ||
], | ||
"Type": "s32", | ||
"Default": 50, | ||
"Increments": 5, | ||
"Description": "UltraCam Beyond NEW FOV setting, allows you to set FOV to anything\nThis now also scales up everything related to FOV.", | ||
"Config_Class": [ | ||
"Features", | ||
"Fov" | ||
] | ||
}, | ||
"quality improvements": { | ||
"Name": "Quality Improvements", | ||
"Class": "bool", | ||
"Section": "main", | ||
"Auto": false, | ||
"Default": true, | ||
"Description": "UltraCam Beyond Quality Improvements. This disables FXAA, FSR and Dynamic Resolution\nWARNING: SHOULD ALWAYS BE TURNED ON WITH HIGH RESOLUTION", | ||
"Config_Class": [ | ||
"Resolution", | ||
"QualityImprovements" | ||
] | ||
}, | ||
"resolution": { | ||
"Name": "Resolution", | ||
"Class": "dropdown", | ||
"Section": "main", | ||
"Auto": false, | ||
"Name_Values": [ | ||
"720p", | ||
"900p", | ||
"1080p", | ||
"1152p" | ||
], | ||
"Values": [ | ||
"1280x720", | ||
"1600x900", | ||
"1920x1080", | ||
"2048x1152" | ||
], | ||
"Default": 2, | ||
"Description": "UltraCam Beyond NEW Resolution Scaling uses internal resolution\nWARNING: ANYTHING OVER 1440P REQUIRES EXTENDED MEMORY", | ||
"Config_Class": [ | ||
"Resolution", | ||
"Width", | ||
"Height" | ||
] | ||
}, | ||
"render distance": { | ||
"Name": "Render Distance", | ||
"Class": "dropdown", | ||
"Section": "main", | ||
"Auto": false, | ||
"Name_Values": [ | ||
"VERY LOW", | ||
"LOW", | ||
"MEDIUM", | ||
"DEFAULT", | ||
"(EXPERIMENTAL) HAS ISSUES" | ||
], | ||
"Values": [ | ||
1000, | ||
5000, | ||
12500, | ||
25000, | ||
35000 | ||
], | ||
"Default": 3, | ||
"Description": "UltraCam Beyond Render Distance.\nDefault is 25000. Increased is 50000.\nMay see a small benefit on low, up to 20% fps.\nExpect the game to use fog like rendering Minecraft.", | ||
"Config_Class": [ | ||
"Resolution", | ||
"RenderDistance" | ||
] | ||
}, | ||
"hide ui": { | ||
"Name": "Auto Hide UI in FreeCam", | ||
"Class": "bool", | ||
"Section": "extra", | ||
"Auto": false, | ||
"Default": true, | ||
"Description": "UltraCam Beyond AUTO Hide UI, this will automatically hide the UI in freecam mode.", | ||
"Config_Class": [ | ||
"UltraCam", | ||
"AutoHideUI" | ||
] | ||
}, | ||
"freecam sens": { | ||
"Name": "Freecam Sensitivity", | ||
"Class": "scale", | ||
"Section": "extra", | ||
"Auto": false, | ||
"Values": [ | ||
10, | ||
100 | ||
], | ||
"Type": "s32", | ||
"Default": 30, | ||
"Increments": 5, | ||
"Description": "Increase Freecam Sensitivity.", | ||
"Config_Class": [ | ||
"UltraCam", | ||
"CameraSpeed" | ||
] | ||
}, | ||
"freecam speed": { | ||
"Name": "Freecam Speed", | ||
"Class": "scale", | ||
"Section": "extra", | ||
"Auto": false, | ||
"Values": [ | ||
1, | ||
20 | ||
], | ||
"Type": "s32", | ||
"Default": 5, | ||
"Increments": 1, | ||
"Description": "Increase Camera Movement Speed.", | ||
"Config_Class": [ | ||
"UltraCam", | ||
"Speed" | ||
] | ||
}, | ||
"ani smoothing": { | ||
"Name": "Sequence Smoothing", | ||
"Class": "scale", | ||
"Section": "extra", | ||
"Auto": true, | ||
"Values": [ | ||
0.1, | ||
0.5 | ||
], | ||
"Type": "f32", | ||
"Default": 0.25, | ||
"Increments": 0.05, | ||
"Description": "Animation Smoothing set to auto for now.", | ||
"Config_Class": [ | ||
"UltraCam", | ||
"AnimationSmoothing" | ||
] | ||
}, | ||
"animationfadeout": { | ||
"Name": "Last Keyframe Fadeout", | ||
"Class": "bool", | ||
"Section": "extra", | ||
"Auto": false, | ||
"Default": false, | ||
"Description": "Improves the smoothness of the last Keyframe for UltraCam sequencer.", | ||
"Config_Class": [ | ||
"UltraCam", | ||
"AnimationFadeout" | ||
] | ||
}, | ||
"benchmark": { | ||
"Name": "Benchmark Selection", | ||
"Class": "dropdown", | ||
"Section": "extra", | ||
"Auto": false, | ||
"Name_Values": [ | ||
"Kakariko", | ||
"Great Sky Island", | ||
"Lookout Landing", | ||
"Goron City", | ||
"Korok Forest" | ||
], | ||
"Values": [ | ||
0, | ||
1, | ||
2, | ||
3 | ||
], | ||
"Default": 1, | ||
"Description": "UltraCam Beyond preset default benchmark.\nTrigger when you press G", | ||
"Config_Class": [ | ||
"Benchmark", | ||
"Benchmark" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.