Initial commit

This commit is contained in:
Brian Beck 2025-09-11 16:56:30 -07:00
parent 2211ed7650
commit ebb3dc9cdd
10121 changed files with 801 additions and 4 deletions

View file

@ -0,0 +1,28 @@
//--------------------------------------------------------------------------
//
// joystickBind.cs
//
//--------------------------------------------------------------------------
// Joystick functions:
function joystickMoveX(%val)
{
$mvLeftAction = ( %val < 0.0 );
$mvRightAction = ( %val > 0.0 );
}
function joystickMoveY(%val)
{
$mvForwardAction = ( %val < 0.0 );
$mvBackwardAction = ( %val > 0.0 );
}
function joyYaw(%val)
{
$mvYaw += getMouseAdjustAmount( %val );
}
function joyPitch(%val)
{
$mvPitch += getMouseAdjustAmount( %val );
}