Skip to content

Commit

Permalink
version 5.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Geokureli committed Oct 4, 2023
1 parent 6a7e597 commit 54a1a1f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flixel/FlxG.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions flixel/animation/FlxAnimation.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 2 additions & 0 deletions flixel/tile/FlxTilemap.hx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class FlxTilemap extends FlxTypedTilemap<FlxTile>
* 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;

Expand Down Expand Up @@ -164,6 +165,7 @@ class FlxTypedTilemap<Tile:FlxTile> extends FlxBaseTilemap<Tile>
* 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;

Expand Down
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {}
}

0 comments on commit 54a1a1f

Please sign in to comment.