mirror of
https://github.com/photonstorm/phaser
synced 2024-11-14 00:47:29 +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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
gameObject = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -853,6 +857,10 @@ var Group = new Class({
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
gameObject = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue