-------------------------------------------------------------------------------- -- Function......... : showMouse -- Author........... : -- Description...... : -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- function FPSCamera.showMouse ( b ) -------------------------------------------------------------------------------- if ( b ) then hud.callAction ( application.getCurrentUser ( ), "HUDShowMouse" ) hud.callAction ( application.getCurrentUser ( ), "HUDHideTarget" ) else hud.callAction ( application.getCurrentUser ( ), "HUDHideMouse" ) hud.callAction ( application.getCurrentUser ( ), "HUDShowTarget" ) end -------------------------------------------------------------------------------- end --------------------------------------------------------------------------------