Skip to content

Commit 3f7115f

Browse files
committed
I love error from description
ERROR (unknown position) | Type not found : T
1 parent b1e92d0 commit 3f7115f

File tree

3 files changed

+5
-259
lines changed

3 files changed

+5
-259
lines changed

hmm.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"name": "flixel",
1212
"type": "git",
1313
"dir": null,
14-
"ref": "95aec0c6399e38ee3aeddffaedd356ff5135acf4",
14+
"ref": "ffa691cb2d2d81de35b900a4411e4062ac84ab58",
1515
"url": "https://github.com/FunkinCrew/flixel"
1616
},
1717
{
1818
"name": "flixel-addons",
1919
"type": "git",
2020
"dir": null,
21-
"ref": "b9118f47f43a66bc0e5fbfcfd9903f0425e918ee",
21+
"ref": "7424db4e9164ff46f224a7c47de1b732d2542dd7",
2222
"url": "https://github.com/FunkinCrew/flixel-addons"
2323
},
2424
{

source/flixel/addons/tile/FlxRayCastTilemap.hx

Lines changed: 0 additions & 253 deletions
This file was deleted.

source/funkin/play/character/AnimateAtlasCharacter.hx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import funkin.graphics.FunkinSprite;
1313
import flixel.system.FlxAssets.FlxGraphicAsset;
1414
import flixel.util.FlxColor;
1515
import flixel.util.FlxDestroyUtil;
16-
import flixel.util.FlxDirectionFlags;
1716
import funkin.graphics.adobeanimate.FlxAtlasSprite;
1817
import funkin.modding.events.ScriptEvent;
1918
import funkin.play.character.CharacterData.CharacterRenderType;
@@ -529,10 +528,10 @@ class AnimateAtlasCharacter extends BaseCharacter
529528
return alpha = value;
530529
}
531530

532-
override function set_facing(Direction:FlxDirectionFlags):FlxDirectionFlags
531+
override function set_facing(value:Int):Int
533532
{
534-
if (exists && facing != Direction) transformChildren(facingTransform, Direction);
535-
return facing = Direction;
533+
if (exists && facing != value) transformChildren(facingTransform, value);
534+
return facing = value;
536535
}
537536

538537
override function set_flipX(value:Bool):Bool

0 commit comments

Comments
 (0)