Chione::

IteratingSystem class

Process all entities matching an aspect iteratively for every World timing loop iteration.

Public Instance Methods

process( aspect_name, entity_id, components )

Process the given components (which match the system’s Aspect) for the specified entity_id. Concrete subclasses are required to override this.

   # File lib/chione/iterating_system.rb
28 def process( aspect_name, entity_id, components )
29     raise NotImplementedError, "%p does not implement #%s" % [ self.class, __method__ ]
30 end