summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-10-25 15:26:43 -0400
committerAndrew Opalach <andrew@akon.city> 2025-10-25 15:26:43 -0400
commit3286a07f70822c9eda0aaad1596f3304b411dc7f (patch)
tree3541ee930d5cb0c581e1e8d25055704ff5aab55e
parent1dff361f177c8fb6fabdf699384986a7784486f4 (diff)
downloadNewCamera-3286a07f70822c9eda0aaad1596f3304b411dc7f.tar.gz
NewCamera-3286a07f70822c9eda0aaad1596f3304b411dc7f.tar.bz2
NewCamera-3286a07f70822c9eda0aaad1596f3304b411dc7f.zip
L2/R2 -> LT/RT, edit comments
Signed-off-by: Andrew Opalach <andrew@akon.city>
-rwxr-xr-xPlugin.cs13
1 files changed, 8 insertions, 5 deletions
diff --git a/Plugin.cs b/Plugin.cs
index 864ac4e..bfffa53 100755
--- a/Plugin.cs
+++ b/Plugin.cs
@@ -19,8 +19,11 @@ using System.Diagnostics;
// @TODO:
// - Thoroughly test "Disable Mod".
// - Improve AOB scans.
-// - White vase thing in research base still fades when close.
// - How to change closer shadow "fade" range.
+// - Reduce the pop-in caused by updating shadow blobs.
+// - Snow LOD pop-in.
+// - Contact shadow resolution.
+// - White vase thing in research base still fades when close.
// - Display equiped armor in the debug UI.
// - Manully set freecam viewport index.
// - Override in-game viewmode.
@@ -1573,7 +1576,7 @@ namespace MHWNewCamera
ImGui.DragFloat("Speed Modifier", ref cameraSpeedModifier, 0.01f, 0.0f);
if (ImGui.BeginItemTooltip())
{
- ImGui.Text("Value to multiply speed by when R2 is held.");
+ ImGui.Text("Value to multiply speed by when RT is held.");
ImGui.EndTooltip();
}
ImGui.DragFloat("Camera Sensitivity", ref cameraSensitivity, 0.0025f, 0.0f);
@@ -1775,7 +1778,7 @@ namespace MHWNewCamera
}
if (ImGui.BeginItemTooltip())
{
- ImGui.Text("This only seems to affect far shadows and not the very close fade to lower resolution range.");
+ ImGui.Text("This only seems to affect far shadows and not the very close fade-to-blob range.");
ImGui.EndTooltip();
}
@@ -2322,11 +2325,11 @@ namespace MHWNewCamera
ImGui.Text("Left Stick:");
ImGui.Text($" X: {PadLx}");
ImGui.Text($" Y: {PadLy}");
- ImGui.Text($" L2: {PadLz}");
+ ImGui.Text($" LT: {PadLz}");
ImGui.Text("Right Stick:");
ImGui.Text($" X: {PadRx}");
ImGui.Text($" Y: {PadRy}");
- ImGui.Text($" R2: {PadRz}");
+ ImGui.Text($" RT: {PadRz}");
ImGui.DragFloat("+right", ref plusRight, 0.05f);
ImGui.DragFloat("+forward", ref plusForward, 0.05f);
ImGui.PopID();