-
Notifications
You must be signed in to change notification settings - Fork 13
Description
I'm working with a pre-built PNGTuber model that was created for PNGTuberPlus and attempting to convert it to Remix. Certain sprites are set up for slower animations. For example the eyes have 4 frames and I'd really like them to only switch every 3-5 seconds. Currently the minimum animation speed seems to be 1 FPS but I'd love a way to set it to be 0.3 for switching every ~3 seconds or 0.25 to switch every 4 seconds.
I realize I could convert the original sprites to have 3-4 times the frames and duplicate them but that's a lot more work for something that feels like it should be simple.
FWIW the save file included with the models has the speed set to 2
. This imports as 0
so it's broken out of the box already. Looking at some other values I think Remix is importing the speed divided by 6
? if that's the case it really makes it a pain to try and convert between applications. I think converting values to a new scale is fine but it'd annoying for cases like this where the old value is not even possible. If fractional values were allowed then 2 / 6
would import fine as 0.33
or something and "just work"