|
var texts = AssetWrapper.list(TEXT).filter((text) -> StringTools.startsWith(text, '$Path/sprite')); |
|
|
|
var texts = []; |
For some reason it does this but then shadows the variable with an empty array. This causes some extra unnecessary overhead since Haxe doesn't optimize the unused function out.
Sorry if this counts as a bug but the template for it said "no code involved".
flxanimate/flxanimate/frames/FlxAnimateFrames.hx
Lines 44 to 46 in 3e53bcf
For some reason it does this but then shadows the variable with an empty array. This causes some extra unnecessary overhead since Haxe doesn't optimize the unused function out.
Sorry if this counts as a bug but the template for it said "no code involved".