You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, in the Aseprite editor, tags default to looping, represented by the Repeat field on the tag being unchecked.
Current Flixel parsed behavior:
Tag's Repeat Checkbox
Tag's Repeat Field Value
Flixel Animation parsed loops value
Repeat
N/A
false
Repeat
1
true
Repeat
>1
true
Desired Flixel parsed behavior:
Tag's Repeat Checkbox
Tag's Repeat Field Value
Flixel Animation parsed loops value
Repeat
N/A
true
Repeat
1
false
Repeat
>1
true
With this behavior, the only gap between Aseprite and Flixel is in the case where Repeat is >1, as Flixel does not have a built-in notion of playing an animation x times.
The text was updated successfully, but these errors were encountered:
Aseprite editor behavior is as follows:
1
>1
Currently, AseAtlas parses the
loops
value as:However, in the Aseprite editor, tags default to looping, represented by the
Repeat
field on the tag being unchecked.Current Flixel parsed behavior:
loops
valuefalse
1
true
>1
true
Desired Flixel parsed behavior:
loops
valuetrue
1
false
>1
true
With this behavior, the only gap between Aseprite and Flixel is in the case where
Repeat
is>1
, as Flixel does not have a built-in notion of playing an animationx
times.The text was updated successfully, but these errors were encountered: