Method: Ray::AnimationList#each

Defined in:
lib/ray/animation_list.rb

#each {|anim| ... } ⇒ Object

Yields:

  • Iterates over all of the animations.

Yield Parameters:



41
42
43
44
# File 'lib/ray/animation_list.rb', line 41

def each(&block)
  @animations.each(&block)
  self
end