From 6dae2df502995679bbd7742ac919d9ee467db9d8 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Thu, 5 Sep 2024 00:53:27 +0200 Subject: Backend: Ghost Mode Graph Editor (#2461) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../at/hannibal2/skyhanni/config/features/dev/GraphConfig.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java index 8dd606cd3..bbc6caf7d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java @@ -21,6 +21,11 @@ public class GraphConfig { @ConfigEditorKeybind(defaultKey = Keyboard.KEY_F) public int placeKey = Keyboard.KEY_F; + @Expose + @ConfigOption(name = "Toggle Ghost Position", desc = "Creates or removes the Ghost Position. This helps editing nodes tht are in the air.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_F) + public int toggleGhostPosition = Keyboard.KEY_NONE; + @Expose @ConfigOption(name = "Select Key", desc = "Select the nearest node to be active. Double press to unselect.") @ConfigEditorKeybind(defaultKey = -98) // Middle Mouse @@ -37,7 +42,7 @@ public class GraphConfig { public int exitKey = Keyboard.KEY_HOME; @Expose - @ConfigOption(name = "Edit Key", desc = "While holding the Key, edit the position of the active node with the minecraft movement controls.") + @ConfigOption(name = "Edit Key", desc = "While holding the Key, edit the position of the active node or the selection block with the minecraft movement controls.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_TAB) public int editKey = Keyboard.KEY_TAB; -- cgit