Keybindings for Inkarnate

Adds keybindings to all mapping function in https://inkarnate.com/

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

作者
Azzutee
今日安裝
0
安裝總數
32
評價
0 0 0
版本
1.2.0
建立日期
2019-02-07
更新日期
2019-02-08
尺寸
14.9 KB
授權條款
未知
腳本執行於

Keybinds can be viewed inside the script and I'll post them below. They can also be changed inside the script.

Generally, "1-8" are for changing the different tools.

"qwe" are for pushing buttons (like place/select)

The arrow keys are for the main scale. Up/down scales by a larger amount. If there is a secondary number, it's "uiop". If there is a third, it's "kl".

For selecting from a dropdown, generally it's the first letter of the word.

Globally, the numpad +- zooms in and out, numpad 4862 moves the screen, 5 resets.

All keybinds:

sculpt: {
    mode: {
        add: 'a',
        subtract: 's'
    },
    shape: {
        circle: 'c',
        block: 'b',
        hex: 'h'
    },
    size: {
        more: 'ArrowRight',
        less: 'ArrowLeft',
        moreMore: 'ArrowUp',
        lessLess: 'ArrowDown'
    }
},
brush: {
    chooseTexture: {
        open: 'q'
    },
    layer: {
        fg: 'f',
        bg: 'g'
    },
    shape: {
        circle: 'c',
        block: 'b',
        hex: 'h'
    },
    size: {
        more: 'ArrowRight',
        less: 'ArrowLeft',
        moreMore: 'ArrowUp',
        lessLess: 'ArrowDown'
    },
    softness: {
        more: 'o',
        less: 'i',
        moreMore: 'p',
        lessLess: 'u'
    },
    opacity: {
        moreMore: 'l',
        lessLess: 'k'
    }
},
object: {
    mode: {
        place: 'q',
        select: 'w'
    },
    layer: {
        fg: 'f',
        bg: 'g'
    },
    chooseObject: {
        open: 'e'
    },
    scale: {
        value: {
            more: 'o',
            less: 'i',
            moreMore: 'p',
            lessLess: 'u'
        }
    },
},
pattern: {
    mode: {
        place: 'q',
        select: 'w'
    },
    choosePattern: {
        open: 'e'
    },
    scale: {
        more: 'o',
        less: 'i',
        moreMore: 'p',
        lessLess: 'u'
    },
    cycleSelection: {
        cycle: 'c'
    }
},
text: {
    mode: {
        place: 'q',
        select: 'w'
    },
    size: {
        more: 'o',
        less: 'i',
        moreMore: 'p',
        lessLess: 'u'
    },
    bold: {
        toggle: 'b'
    }
},
note: {
    mode: {
        place: 'q',
        select: 'w'
    },
},
grid: {
    type: {
        hex: 'h',
        square: 's'
    },
    opacity: {
        more: 'o',
        less: 'i',
        moreMore: 'p',
        lessLess: 'u'
    },
    size: {
        more: 'ArrowRight',
        less: 'ArrowLeft',
        moreMore: 'ArrowUp',
        lessLess: 'ArrowDown'
    },
    width: {
        more: 'l',
        less: 'k'
    }
},
global: {
    tools: {
        sculpt: '1',
        brush: '2',
        object: '3',
        pattern: '4',
        text: '5',
        note: '6',
        grid: '7',
        zoom: '8'
    },
    zoom: {
        upleft: 103, // these are key codes for the numpad
        up: 104,
        upright: 105,
        right: 102,
        downright: 99,
        down: 98,
        downleft: 97,
        left: 100,
        zoomIn: 107,
        zoomOut: 109,
        reset: 101
    },
    delete: 'Delete'
}