Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Input   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • Input
  • All Members
  • Class Variables
  • anyKey
  • anyKeyDown
  • inputString
  • mousePosition
  • Class Functions
  • GetAxis
  • GetAxisRaw
  • GetButton
  • GetButtonDown
  • GetButtonUp
  • GetJoystickNames
  • GetKey
  • GetKeyDown
  • GetKeyUp
  • GetMouseButton
  • GetMouseButtonDown
  • GetMouseButtonUp
  • ResetInputAxes

Input.GetJoystickNames  

static function GetJoystickNames () : string[]

Description

Returns an array of stings describing the connected joysticks.

This can be useful in user input configuration screens - this way, instead of showing labels like "Joystick 1", you can show more meaningful names like "Logitech WingMan". To read values from different joysticks, you need to assign respective axes for the number of joysticks you want to support in the input manager.

function Update () {
// requires you to set up axes "Joy0X" - "Joy3X" and "Joy0Y" - "Joy3Y" in the Input Manger
for (i=0; i<4; i++)
{
if (Mathf.Abs(Input.GetAxis("Joy"+i+"X")) > 0.2
|| Mathf.Abs(Input.GetAxis("Joy"+i+"Y")) > 0.2)
Debug.Log (Input.GetJoystickNames()[i]+" is moved");
}
}