VRC_IKFollower

❗️

Deprecated Component

VRC_IKFollower is deprecated and will not receive updates, and will be removed in the future. Use Constraints instead.

🚧

Not Available on AV3 Avatars

This component cannot be used on AV3 avatars. Use Constraints instead.

📘

Constraints do it better!

This component was constructed back when Unity didn't have Constraints natively. You should use those instead-- they behave far better and are a native Unity system.

Keep in mind that although constraints are low-cost, large amounts of them will still add on up frame time! Don't overuse them.

IKFollower is intended to be used to help particle systems sync up with their proper location after the IK has been solved, so you can shoot particles out of your hand into world space without having to use RigidBodies. This has almost no performance cost.

For proper usage, this is how you should set it up:

Make an empty GameObject that is the child of one of the following IK-following bones:

  • Left or Right Hand
  • Head
  • Hips (for FBT)
  • Left or Right Foot (for FBT)

🚧

Warnings

  • Putting the IKFollower script on an object that is a child of any other bone will result in odd behavior.
  • Attempting to animate the object that the IKFollower is on will cause issues. Don't do this!

In that GameObject, add the VRC_IKFollower script as a component. You can also add your ParticleSystem here. Ensure it is set to World Space simulation!

You may want to offset the GameObject from the position so that it matches up with a gesture. For example, if you wish to have a particle shoot out of your finger when you do the "fingergun" gesture, you'd want to offset the GameObject to the approximate position of your index finger while in that pose, while retaining the Hand as the parent for the GameObject.