wasdcamera: Use modifierless keybinds

This commit is contained in:
Max Weber
2019-01-16 16:50:37 -07:00
parent 5bc7639994
commit 871132b517

View File

@@ -28,7 +28,7 @@ import java.awt.event.KeyEvent;
import net.runelite.client.config.Config; import net.runelite.client.config.Config;
import net.runelite.client.config.ConfigGroup; import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem; import net.runelite.client.config.ConfigItem;
import net.runelite.client.config.Keybind; import net.runelite.client.config.ModifierlessKeybind;
@ConfigGroup("wasdcamera") @ConfigGroup("wasdcamera")
public interface WASDCameraConfig extends Config public interface WASDCameraConfig extends Config
@@ -39,9 +39,9 @@ public interface WASDCameraConfig extends Config
name = "Up key", name = "Up key",
description = "The key which will replace up." description = "The key which will replace up."
) )
default Keybind up() default ModifierlessKeybind up()
{ {
return new Keybind(KeyEvent.VK_W, 0); return new ModifierlessKeybind(KeyEvent.VK_W, 0);
} }
@ConfigItem( @ConfigItem(
@@ -50,9 +50,9 @@ public interface WASDCameraConfig extends Config
name = "Down key", name = "Down key",
description = "The key which will replace down." description = "The key which will replace down."
) )
default Keybind down() default ModifierlessKeybind down()
{ {
return new Keybind(KeyEvent.VK_S, 0); return new ModifierlessKeybind(KeyEvent.VK_S, 0);
} }
@ConfigItem( @ConfigItem(
@@ -61,9 +61,9 @@ public interface WASDCameraConfig extends Config
name = "Left key", name = "Left key",
description = "The key which will replace left." description = "The key which will replace left."
) )
default Keybind left() default ModifierlessKeybind left()
{ {
return new Keybind(KeyEvent.VK_A, 0); return new ModifierlessKeybind(KeyEvent.VK_A, 0);
} }
@ConfigItem( @ConfigItem(
@@ -72,8 +72,8 @@ public interface WASDCameraConfig extends Config
name = "Right key", name = "Right key",
description = "The key which will replace right." description = "The key which will replace right."
) )
default Keybind right() default ModifierlessKeybind right()
{ {
return new Keybind(KeyEvent.VK_D, 0); return new ModifierlessKeybind(KeyEvent.VK_D, 0);
} }
} }