-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__run = function() { | ||
a__run = function() { | ||
if ( running == undefined ) { | ||
var _list; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ var _v = keyboard_check( vk_down ) - keyboard_check( vk_up ); | |
|
||
x += _h * 4; | ||
y += _v * 4; | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/// @func GamepadAxis | ||
/// @param {int/string} constant Must be a gamepad axis input | ||
/// @desc Converts Gamepad Axis' into a format used by (#InputDevice). | ||
/// @wiki Input-Handling-Index Gamepad | ||
function GamepadAxis( _constant ) : __InputSource__() constructor { | ||
static down = function() { | ||
return __Constant(); | ||
|
||
} | ||
__Constant = _constant; | ||
|
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.