Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default AnimatedTexture's fps to 0 #64657

Closed

Conversation

Mickeon
Copy link
Contributor

@Mickeon Mickeon commented Aug 20, 2022

Closes godotengine/godot-proposals#4742.

Previously it was a somewhat arbitrary 4.0. I can only speculate it was done to show the AnimatedTexture... animate as soon as its frames were added, but the documentation makes full note of the behaviour when fps is set to 0, which is quite a bit more more noteworthy.

@Mickeon Mickeon requested a review from a team as a code owner August 20, 2022 15:05
@Calinou Calinou added this to the 4.0 milestone Aug 20, 2022
@fire fire requested a review from a team August 20, 2022 15:18
@akien-mga
Copy link
Member

akien-mga commented Aug 23, 2022

I'm OK with the change, but I think the documentation is not clear enough about what happens with fps set to 0.

Animation speed in frames per second.

OK.

This value defines the default time interval between two frames of the animation, and thus the overall duration of the animation loop based on the [member frames] property.

That's a bit confusing already because it sounds like the value of fps is the time interval (in seconds?) between two frames. While in fact this time internal is 1.0 / fps (fps of 4 means a time interval of 0.25 between each frame).

A value of 0 means no predefined number of frames per second, the animation will play according to each frame's frame delay (see [method set_frame_delay]).

That's the main problem here because it doesn't say enough. The default frame delay is 0. So with a default fps and a default frame delay of 0, how will the animation play? I assume what's implied here is that the equation for the interval between two frames is 1.0 / frame_count + frame_delay, i.e. that a fps value of 0 is equivalent to an fps value of frame_count.

@Mickeon
Copy link
Contributor Author

Mickeon commented Aug 23, 2022

I unironically love to modify the documentation, I'll see what I can do.

Also updates documentation.
@Mickeon Mickeon force-pushed the change-default-anim-texture-fps branch from b569fcf to 7601a96 Compare August 23, 2022 19:38
@Mickeon
Copy link
Contributor Author

Mickeon commented Aug 23, 2022

Pushed and updated that description after thoroughly testing AnimatedTexture myself.

But man, AnimatedTexture's entire description (an entire behaviour) feels... OUTSTANDINGLY antique. I may follow this up... It really feels like the way it works and is described is more complicated than it has any right to be in Godot 4.

@filipworksdev
Copy link

A positive fps actually overrides all individually chosen frame delays to an equally distributed value based on the chosen fps. An animation with 2 frames 0.5s and 1.5s will end up something like 2.0s 2.0s when fps is 4. It changes the very nature of your animation.

I think fps should be reworked with a proposal perhaps. It would split it two properties:

  • an on/off override that controls if the individually chosen frame delays will be forced to an equally distributed value
  • and a float/percent/second/fps value that can stretch/shrink the speed of the entire animation.

@Mickeon
Copy link
Contributor Author

Mickeon commented Sep 1, 2022

@filipworksdev See #65188

@Mickeon Mickeon deleted the change-default-anim-texture-fps branch September 8, 2022 15:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AnimatedTexture should be 0 fps by default so it animates normally based on frame time
4 participants