1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-12 05:07:06 +00:00

Hide AnimateAtlas characters in the animation editor.

This commit is contained in:
EliteMasterEric 2023-10-11 19:16:04 -04:00
parent 652a1836a0
commit a88262a5f4

View file

@ -253,6 +253,10 @@ class DebugBoundingState extends FlxState
offsetView.add(animDropDownMenu);
var characters:Array<String> = 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');