viniciusgerevini / godot-aseprite-wizard

Godot Editor plugin to help import Aseprite animations to AnimationPlayers, AnimatedSprites and SpriteFrames.
MIT License
873 stars 42 forks source link

Loop configuration and exception prefix #38

Closed viniciusgerevini closed 2 years ago

viniciusgerevini commented 2 years ago

closes #33

Configuration screen

Here are some examples.

For configuration Loop animations = true and Loop exception prefix = "_":

Animations in Aseprite:  walk  run  _attack  _engage

Result in Godot:
- walk (loop = true)
- run (loop = true)
- attack (loop = false)
- engage (loop = false)

For configuration Loop animations = false and Loop exception prefix = "loop_":

Animations in Aseprite:  loop_walk  loop_run  attack engage

Result in Godot:
- walk (loop = true)
- run (loop = true)
- attack (loop = false)
- engage (loop = false)