Funkin/source/funkin/util/SortUtil.hx

20 lines
510 B
Haxe
Raw Normal View History

package funkin.util;
2022-01-26 14:19:57 -05:00
2022-02-23 16:49:54 -05:00
#if !macro
2022-01-26 14:19:57 -05:00
import flixel.group.FlxGroup.FlxTypedGroup;
import flixel.util.FlxSort;
import flixel.FlxObject;
2022-02-23 16:49:54 -05:00
#end
2022-01-26 14:19:57 -05:00
class SortUtil
{
/**
* You can use this function in FlxTypedGroup.sort() to sort FlxObjects by their z-index values.
* The value defaults to 0, but by assigning it you can easily rearrange objects as desired.
*/
public static inline function byZIndex(Order:Int, Obj1:FlxObject, Obj2:FlxObject):Int
{
return FlxSort.byValues(Order, Obj1.zIndex, Obj2.zIndex);
}
}