Are you referring to making custom scripted actions run in FixedUpdate, or updating the whole graph in FixedUpdate?
Generally speaking is not really advisable to update everything in FixedUpdate, but rather only physics related things that specifically have to do with rigidbody.
Taken from the Unity docs for your convenience, states that: FixedUpdate should be used instead of Update when dealing with Rigidbody. For example when adding a force to a rigidbody, you have to apply the force every fixed frame inside FixedUpdate instead of every frame inside Update.
Please let me know what is the case.
Thanks!
Join us on Discord: https://discord.gg/97q2Rjh
Login
Register
By registering on this website you agree to our Privacy Policy.