abstract struct SF::Event::JoystickMoveEvent
- SF::Event::JoystickMoveEvent
- SF::Event
- Struct
- Value
- Object
Overview
Joystick axis move event parameters (JoystickMoved)
Direct Known Subclasses
Defined in:
window/obj.crConstructors
Instance Method Summary
- 
        #axis : Joystick::Axis
        
          Axis on which the joystick moved 
- #axis=(axis : Joystick::Axis)
- 
        #dup : JoystickMoveEvent
        
          Returns a shallow copy of this object. 
- 
        #joystick_id : UInt32
        
          Index of the joystick (in range `0 ... 
- #joystick_id=(joystick_id : Int)
- 
        #position : Float32
        
          New position on the axis (in range `-100 .. 
- #position=(position : Number)
Instance methods inherited from struct SF::Event
  
  
    
      initialize
    initialize
    
  
    
  Constructor methods inherited from struct SF::Event
  
  
    
      new
    new
    
  
    
  
    
    
    
  
    
    
    
  
    
    
    
  
Constructor Detail
Instance Method Detail
        
        def dup : JoystickMoveEvent
        #
      
      
        
              Description copied from struct Value
            
          
          Returns a shallow copy of this object.
Because Value is a value type, this method returns self,
which already involves a shallow copy of this object because
value types are passed by value.