We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4d3ace + 0d5953f commit d2e1b40Copy full SHA for d2e1b40
src/org/flixel/FlxGroup.as
@@ -573,21 +573,12 @@ package org.flixel
573
}
574
575
/**
576
- * Calls revive on the group itself and then on the group's members.
+ * Calls revive on the group object. <i>Note: Does not revive any of the members!</i>
577
*/
578
override public function revive():void
579
{
580
// Revive the group itself
581
super.revive();
582
-
583
- var basic:FlxBasic;
584
- var i:uint = 0;
585
- while(i < length)
586
- {
587
- basic = members[i++] as FlxBasic;
588
- if((basic != null) && !basic.alive)
589
- basic.revive();
590
- }
591
592
593
0 commit comments