mirror of
https://github.com/Jusctsch5/ironsphererpg.git
synced 2026-01-20 03:54:45 +00:00
Taking everything obtained from http://ironsphererpg2.webs.com/ and dumping it in a git repo
28 lines
588 B
C#
28 lines
588 B
C#
//--------------------------------------------------------------------------
|
|
//
|
|
// 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 );
|
|
} |