alextrevisan / LPCAnimatedSprite2D

With this addon you simply add a LPC spritesheet to a character and it automaticly generates the animations for the Godot4 sprites
MIT License
45 stars 6 forks source link

Allow user to change FPS/speed index after importing sprites #4

Closed hades200082 closed 11 months ago

hades200082 commented 1 year ago

Similar to #2 the plugin recreates all animations on every save resulting in overwriting the FPS or speed index settings the dev has chosen.

It might be better to only regenerate the animations if the underlying sprite sheet is changed.

alextrevisan commented 1 year ago

The recreation is important for some reasons like: reorder, reassign spritesheets, renames. If I export the property to the user to change the FPS will satistfy your need?

hades200082 commented 1 year ago

Possibly. My use case is that different characters have different movement/attack speeds and I want to make the corresponding animation look faster to match.

If the FPS can be exported on a per-animation basis then this would work, but if it's one FPS for all of the animations on the sprite sheet then it won't work for my case I think.

alextrevisan commented 1 year ago

Maybe then I can put a FPS in each animation sprite

alextrevisan commented 11 months ago

Done!