22-02-2019, 08:10 AM
(21-02-2019, 08:57 PM)VrTech Wrote: The problem is when I trigger the obiCloth On it's slowly follow up. I don't know why?
This is when ObiCloh is Turn Off
And this is when it turned on
Any ideas?
Thank you!
Cloth is updated during FixedUpdate, so if your character locomotion logic is performed in Update() or LateUpdate(), there will be a one-frame delay. Try to follow the CharacterCloth sample scene as closely as possible:
- CharacterController does its thing in FixedUpdate.
- The animator update mode is set to Animate Physics.