Bolt-Development / the-darkest-forest

BDT's debut title
3 stars 0 forks source link

Animation Flow Control #11

Closed joshbyrom closed 11 years ago

joshbyrom commented 11 years ago

Flow control for the animation controller will come from an object that can be expected to emit 'tick' events.

For example:

class AnimationController(object):
    def __init__(self, emitter, model):
        emitter.on('tick', self.update)
joshbyrom commented 11 years ago

Also, note that most controllers do not need to be PubSubs. The animation controller is not required to be one either.