mirror of
https://github.com/photonstorm/phaser
synced 2024-11-13 00:17:24 +00:00
Fix incorrect active
state selection
This commit is contained in:
parent
23f353326c
commit
1c0905a103
1 changed files with 8 additions and 0 deletions
|
@ -836,6 +836,10 @@ var Group = new Class({
|
|||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
gameObject = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -853,6 +857,10 @@ var Group = new Class({
|
|||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
gameObject = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue