rafaelFelisbino
rafaelFelisbino
Great! :)
My mediator is not been created..... My Class is added to stage but no mediators. Some ideas why this happens?
``` _context = new Context().install(MVCSBundle, StarlingViewMapExtension, SignalCommandMapExtension ) .configure(ConfigClass, new ContextView(this)); ``` then on my configure class: ``` mediatorMap.map(IGame).toMediator(IGameMediator); ``` I am mapping an interface to a mediator, but i...
My view (starling) is added to my flash stage but stil no mediators are created.
on my main class after context initialized i start starling: ``` _starling = new Starling(Game, stage); _starling.start(); ``` my mediator is mapped for IGame and Game implements IGame. I also...
Hey jamieowen it was my mistake, sorry. I wasnt passing my staling instantiation to my context. I was wondering if your extension could check this, then could bring a warn...