mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
|
ig.module('game.feature.masochist.keyboard-controls')
|
||
|
.requires('game.main')
|
||
|
.defines(() => {
|
||
|
sc.CrossCode.inject({
|
||
|
init() {
|
||
|
this.parent();
|
||
|
ig.input.bind(ig.KEY.J, 'aim');
|
||
|
ig.input.bind(ig.KEY.K, 'dash');
|
||
|
},
|
||
|
});
|
||
|
});
|