Indicates that a Joystick axis was moved.
This event has these attributes:
[Source]
# File lib/rubygame/event.rb, line 212 def initialize(joy,axis,value) # eventually, joy could be int OR a Rubygame::Joystick instance, # which would be stored as joy or maybe joyinstance? @joynum = joy @axis, @value = axis, value end
[Validate]