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');