module Rubygame::Events::MouseButtonEvent

MouseButtonEvent is a mixin module included in the MousePressed and MouseReleased classes. It defines the button and pos attribute readers.

Attributes

button[R]
pos[R]

Public Class Methods

new( pos, button ) click to toggle source

Initialize the MouseButtonEvent.

button

a symbol for the button that was pressed or released. (Symbol, required)

pos

an Array for the position of the mouse cursor when the event occured. [0,0] is the top-left corner of the window (or the screen if running full-screen). (Array, required)

# File lib/rubygame/events/mouse_events.rb, line 46
def initialize( pos, button )

  unless button.kind_of? Symbol
    raise ArgumentError, "button must be a :symbol"
  end

  @button = button

  @pos = pos.to_ary.dup
  @pos.freeze

end