Skip to content

Commit

Permalink
Merge pull request #87 from BrotherSharper/master
Browse files Browse the repository at this point in the history
change default keybindings
  • Loading branch information
megahead11 authored Feb 23, 2022
2 parents 5db85bc + 54ffda3 commit 016c2df
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions app/js/theatre_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ Hooks.once("init", () => {
hint: "",
editable: [{
key: "Enter",
modifiers: ['Control']
modifiers: ['Alt']
}],
onDown: () => {
const ownedActors = game.actors.filter(a => a.permission === 3);
Expand All @@ -646,7 +646,7 @@ Hooks.once("init", () => {
hint: "",
editable: [{
key: "KeyN",
modifiers: ['Control']
modifiers: ['Alt']
}],
onDown: () => {
const narratorButton = $(document).find(`div.theatre-icon-narrator`).closest(`div.theatre-control-btn`);
Expand Down Expand Up @@ -675,8 +675,8 @@ Hooks.once("init", () => {
name: "Theatre.UI.Keybinds.nudgePortraitLeft",
hint: "",
editable: [{
key: "ArrowLeft",
modifiers: ['Shift']
key: "KeyZ",
modifiers: ['Alt']
}],
onDown: () => {
const imgId = Theatre.instance.speakingAs;
Expand Down Expand Up @@ -710,8 +710,8 @@ Hooks.once("init", () => {
name: "Theatre.UI.Keybinds.nudgePortraitRight",
hint: "",
editable: [{
key: "ArrowRight",
modifiers: ['Shift']
key: "KeyC",
modifiers: ['Alt']
}],
onDown: () => {
const imgId = Theatre.instance.speakingAs;
Expand Down Expand Up @@ -745,8 +745,8 @@ Hooks.once("init", () => {
name: "Theatre.UI.Keybinds.nudgePortraitUp",
hint: "",
editable: [{
key: "ArrowUp",
modifiers: ['Shift']
key: "KeyS",
modifiers: ['Alt']
}],
onDown: () => {
const imgId = Theatre.instance.speakingAs;
Expand Down Expand Up @@ -780,8 +780,8 @@ Hooks.once("init", () => {
name: "Theatre.UI.Keybinds.nudgePortraitDown",
hint: "",
editable: [{
key: "ArrowDown",
modifiers: ['Shift']
key: "KeyX",
modifiers: ['Alt']
}],
onDown: () => {
const imgId = Theatre.instance.speakingAs;
Expand Down

0 comments on commit 016c2df

Please sign in to comment.