Package com.jme3.input
Interface JoystickConnectionListener
public interface JoystickConnectionListener
Listens for the state of a joystick connection.
- 
Method SummaryModifier and TypeMethodDescriptionvoidonConnected(Joystick joystick) Occurs when a new joystick has been detected.voidonDisconnected(Joystick joystick) Occurs when an existing joystick has been disconnected.
- 
Method Details- 
onConnectedOccurs when a new joystick has been detected.- Parameters:
- joystick- the joystick that has been detected.
 
- 
onDisconnectedOccurs when an existing joystick has been disconnected.- Parameters:
- joystick- the joystick that has been disconnected.
 
 
-