0 votes

I am very new to Godot, but have some experience in Unity. I was following a Godot breakout tutorial, and he used Fixed Process (delta). I tried this but it didn't work, (I'm using version 3.1.) has Fixed Process changed at 3.1?

in Engine by (391 points)

1 Answer

+1 vote
Best answer

You were watching a fairly old tutorial from Godot 2.1 or earlier. A lot of names changed in the 3.0 release.

The 3.x equivalent of _fixed_process() is _physics_process(). It was changed to better indicate that it is called on each physics step.

by (21,979 points)
selected by

Thank you! I do need to know this, though. In the tutorial, in the ready function, he typed something like set fixed process(true). do I have to do this now, (except using physics process instead of fixed process.)?

No, that is not required in 3.0+

Thanks for the help!

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.