Version: 2022.1
LanguageEnglish
  • C#

ArticulationBody.SetDriveTargetVelocities

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual

Declaration

public void SetDriveTargetVelocities(List<float> targetVelocities);

Parameters

targetVelocities Supplied list of floats used to set the joint drive target velocities.

Description

Assigns articulation body joint drive target velocities for the entire hierarchy of bodies.

This sets joint drive target velocities in the reduced coordinate space for the entire articulation hierarchy starting from root using the supplied list of floats. Every joint drive target velocity DOF is represented by one float value, however depending on the type of the articulation joint there might be zero, one or 3 DOFs per joint. The exact location of the data to be set in the supplied list for the specific articulation body can be found by calling ArticulationBody.GetDofStartIndices and indexing returned dofStartIndices list by the particular body index via ArticulationBody.index. Number of degrees of freedom(DOF) for the articulation body can be found using ArticulationBody.dofCount. See Also: index, GetDofStartIndices, dofCount, GetDriveTargetVelocities.