InstanceOfTrigger is an event trigger which fires when the event is an instance of the given class. (In other words, when event.instance_of?( klass ) is true.)
Contrast with KindOfTrigger.
Initialize a new instance of InstanceOfTrigger with the given class.
klass |
The class to check for. (Class, required) |
# File lib/rubygame/event_triggers.rb, line 291 def initialize( klass ) @klass = klass end
Generated with the Darkfish Rdoc Generator 2.