mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 22:04:29 +00:00
Merge pull request #181 from FunkinCrew/rewrite/bugfix/alt-animation-fixes
Alt animation fixes
This commit is contained in:
commit
b01d4ea8f4
2
assets
2
assets
|
@ -1 +1 @@
|
||||||
Subproject commit 4ee0c341fd213017b98314d47d28f08b8e1d4289
|
Subproject commit 8dfc578a03fb88c6b93777a2518ee9cd2213dadd
|
|
@ -649,16 +649,20 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass
|
||||||
}
|
}
|
||||||
boppers = [];
|
boppers = [];
|
||||||
|
|
||||||
for (sprite in this.group)
|
if (group != null)
|
||||||
{
|
{
|
||||||
if (sprite != null)
|
for (sprite in this.group)
|
||||||
{
|
{
|
||||||
sprite.kill();
|
if (sprite != null)
|
||||||
sprite.destroy();
|
{
|
||||||
remove(sprite);
|
sprite.kill();
|
||||||
|
sprite.destroy();
|
||||||
|
remove(sprite);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
group.clear();
|
||||||
}
|
}
|
||||||
group.clear();
|
|
||||||
if (debugIconGroup != null && debugIconGroup.group != null)
|
if (debugIconGroup != null && debugIconGroup.group != null)
|
||||||
{
|
{
|
||||||
debugIconGroup.kill();
|
debugIconGroup.kill();
|
||||||
|
|
Loading…
Reference in a new issue