mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-08-31 02:45:13 +00:00
And add a bit of error handling to CharSelectGF & CharSelectSubState Co-Authored-By: Linus Torvalds <torvalds@linux-foundation.org>
36 lines
733 B
Haxe
36 lines
733 B
Haxe
package funkin.util;
|
|
|
|
import flixel.tweens.FlxTween;
|
|
|
|
@:nullSafety
|
|
class FlxTweenUtil
|
|
{
|
|
public static function pauseTween(tween:FlxTween):Void
|
|
{
|
|
if (tween != null)
|
|
{
|
|
tween.active = false;
|
|
}
|
|
}
|
|
|
|
public static function resumeTween(tween:FlxTween):Void
|
|
{
|
|
if (tween != null)
|
|
{
|
|
tween.active = true;
|
|
}
|
|
}
|
|
|
|
public static function pauseTweensOf(Object:Dynamic, ?FieldPaths:Array<String>):Void
|
|
{
|
|
@:privateAccess
|
|
FlxTween.globalManager.forEachTweensOf(Object, FieldPaths, pauseTween);
|
|
}
|
|
|
|
public static function resumeTweensOf(Object:Dynamic, ?FieldPaths:Array<String>):Void
|
|
{
|
|
@:privateAccess
|
|
FlxTween.globalManager.forEachTweensOf(Object, FieldPaths, resumeTween);
|
|
}
|
|
}
|