diff --git a/flixel/FlxG.hx b/flixel/FlxG.hx index 411fefce35..a51e859fdb 100644 --- a/flixel/FlxG.hx +++ b/flixel/FlxG.hx @@ -99,7 +99,7 @@ class FlxG * The HaxeFlixel version, in semantic versioning syntax. Use `Std.string()` * on it to get a `String` formatted like this: `"HaxeFlixel MAJOR.MINOR.PATCH-COMMIT_SHA"`. */ - public static var VERSION(default, null):FlxVersion = new FlxVersion(5, 4, 0); + public static var VERSION(default, null):FlxVersion = new FlxVersion(5, 4, 1); /** * Internal tracker for game object. diff --git a/flixel/animation/FlxAnimation.hx b/flixel/animation/FlxAnimation.hx index e138d437fd..800806a67b 100644 --- a/flixel/animation/FlxAnimation.hx +++ b/flixel/animation/FlxAnimation.hx @@ -83,6 +83,7 @@ class FlxAnimation extends FlxBaseAnimation * How fast or slow time should pass for this animation. * * Similar to `FlxAnimationController`'s `timeScale`, but won't effect other animations. + * @since 5.4.1 */ public var timeScale:Float = 1.0; diff --git a/flixel/tile/FlxTilemap.hx b/flixel/tile/FlxTilemap.hx index 952401934d..05f9ed2f02 100644 --- a/flixel/tile/FlxTilemap.hx +++ b/flixel/tile/FlxTilemap.hx @@ -111,6 +111,7 @@ class FlxTilemap extends FlxTypedTilemap * The default frame padding tilemaps will use when their own `framePadding` is not set * * @see FlxTypedTilemap.framePadding + * @since 5.0.0 */ public static var defaultFramePadding(get, set):Int; @@ -164,6 +165,7 @@ class FlxTypedTilemap extends FlxBaseTilemap * The default frame padding tilemaps will use when their own `framePadding` is not set * * @see FlxTypedTilemap.framePadding + * @since 5.0.0 */ public static var defaultFramePadding = 2; diff --git a/haxelib.json b/haxelib.json index 98942dfe48..e3682af7af 100644 --- a/haxelib.json +++ b/haxelib.json @@ -4,8 +4,8 @@ "license": "MIT", "tags": ["game", "openfl", "flash", "html5", "neko", "cpp", "android", "ios", "cross"], "description": "HaxeFlixel is a 2D game engine based on OpenFL that delivers cross-platform games.", - "version": "5.4.0", - "releasenote": "add FlxAsepriteUtils", + "version": "5.4.1", + "releasenote": "More animation tools", "contributors": ["haxeflixel", "Gama11", "GeoKureli"], "dependencies": {} }