From a88262a5f4d16d64cc070aa1f56c0b4c04b3b83f Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Wed, 11 Oct 2023 19:16:04 -0400 Subject: [PATCH 1/2] Hide AnimateAtlas characters in the animation editor. --- source/funkin/ui/animDebugShit/DebugBoundingState.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/funkin/ui/animDebugShit/DebugBoundingState.hx b/source/funkin/ui/animDebugShit/DebugBoundingState.hx index 4e3d1dbf4..297c44e8e 100644 --- a/source/funkin/ui/animDebugShit/DebugBoundingState.hx +++ b/source/funkin/ui/animDebugShit/DebugBoundingState.hx @@ -253,6 +253,10 @@ class DebugBoundingState extends FlxState offsetView.add(animDropDownMenu); var characters:Array = CharacterDataParser.listCharacterIds(); + characters = characters.filter(function(charId:String) { + var char = CharacterDataParser.fetchCharacterData(charId); + return char.renderType != AnimateAtlas; + }); characters.sort(SortUtil.alphabetically); var charDropdown:DropDown = cast uiStuff.findComponent('characterDropdown'); From bda1a814678f006bc2a93ec0797e684e9f0bd25a Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Sun, 15 Oct 2023 01:17:17 -0400 Subject: [PATCH 2/2] Fast-forward assets module --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 6e5ed4602..8104d43e5 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 6e5ed46026a2eb1e575c5accf9192b90c13ff857 +Subproject commit 8104d43e584a1f25e574438d7b21a7e671358969