diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-09-05 00:53:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 00:53:27 +0200 |
commit | 6dae2df502995679bbd7742ac919d9ee467db9d8 (patch) | |
tree | 1e40ebadf7ba09633978effeccf80dfa3dbbf262 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 59eef491fef0d7dd7f4018febe4d91de01369cbe (diff) | |
download | skyhanni-6dae2df502995679bbd7742ac919d9ee467db9d8.tar.gz skyhanni-6dae2df502995679bbd7742ac919d9ee467db9d8.tar.bz2 skyhanni-6dae2df502995679bbd7742ac919d9ee467db9d8.zip |
Backend: Ghost Mode Graph Editor (#2461)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/dev/GraphConfig.java | 7 |
1 files changed, 6 insertions, 1 deletions
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 @@ -22,6 +22,11 @@ public class GraphConfig { 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 public int selectKey = -98; @@ -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; |