mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-23 08:38:52 -05:00
Tweak: Draw Distance Kokiri menu behavior (#459)
* ADDED: Draw Distance toggle under Experimental enhancement * FIXED: Dark Link Apparition + Kokiri NPC spawn * Added a Toggle for Kokiri NPC since they are mystics * TWKEA: Desciription got the Kokiri draw distance * FIXED: Horses behavior Fixed Epona shout on title screen + Epona call from songFixed Zelda and Ganon horses that could still be seen on camera pan on the castle escape cinematic * Tweak: Draw Distance: Kokiris menu behavior Force the Kokiri Draw Distance to be set to 0 if the Draw Distance is disabled
This commit is contained in:
parent
04bb9cd48e
commit
2a1145785e
@ -1007,7 +1007,9 @@ namespace SohImGui {
|
||||
Tooltip("Turns off the level of detail setting, making models always use their higher poly variants");
|
||||
EnhancementCheckbox("Disable Draw Distance", "gDisableDrawDistance");
|
||||
Tooltip("Turns off the objects draw distance, making objects being visible from a longer range");
|
||||
if (CVar_GetS32("gDisableDrawDistance", 0) == 1) {
|
||||
if (CVar_GetS32("gDisableDrawDistance", 0) == 0) {
|
||||
CVar_SetS32("gDisableKokiriDrawDistance", 0);
|
||||
} else if (CVar_GetS32("gDisableDrawDistance", 0) == 1) {
|
||||
EnhancementCheckbox("Kokiri Draw Distance", "gDisableKokiriDrawDistance");
|
||||
Tooltip("Kokiris are mystical being that appear from a certain distance\nEnable this will remove their draw distance\nNeeds to reload the map to take effect");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user