mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +00:00
controller not config
This commit is contained in:
parent
a2231dddcd
commit
98c2fed09a
1 changed files with 3 additions and 3 deletions
|
@ -108,11 +108,11 @@ var FXPipeline = new Class({
|
|||
|
||||
for (var i = 0; i < fx.length; i++)
|
||||
{
|
||||
var config = fx[i];
|
||||
var controller = fx[i];
|
||||
|
||||
if (config.active)
|
||||
if (controller.active)
|
||||
{
|
||||
handlers[config.type].call(this, config, width, height);
|
||||
handlers[controller.type].call(this, controller, width, height);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue