Can we run the v3 controller in Update, not FixedUpdate?

DankP3

Active member
I had UCCv2 running nicely with another asset in Update, but it stutters when FixedUpdate is used. Is it possible to use Update in v3 and if not is it likely in the future?
 
There are no plans to running in update mode. The rigidbody component is now used for interpolation and that requires the forces to be added in FixedUpdate.

With that said, I am planning on looking at adding camera support for LateUpdate.
 
Top