Go to: Synopsis. Flags. Return value. Related. MEL examples.

Synopsis

drag [-attenuation float] [-directionX float] [-directionY float] [-directionZ float] [-magnitude float] [-maxDistance float] [-name string] [-perVertex boolean] [-position float float float] [-useDirection boolean] [obj[obj]..]

drag is undoable, queryable, and editable.

Drag exerts a friction, or braking force proportional to the speed of a moving object. If direction is not enabled, the drag acts opposite to the current velocity of the object. If direction is enabled, it acts opposite to the component of the velocity in the specified direction. The force is independent of the position of the affected object. The transform is the associated dependency node. Use connectDynamic to cause the field to affect a dynamic object. If fields are created, this command returns the names of each of the fields. If a field was queried, the results of the query are returned. If a field was edited, the field name is returned. If object names are provided or the active selection list is non-empty, the command creates a field for every object in the list and calls addDynamic to add it to the object. If the list is empty, the command defaults to -pos 0 0 0. Setting the -pos flag with objects named on the command line is an error.

Flags

attenuation, directionX, directionY, directionZ, magnitude, maxDistance, name, perVertex, position, useDirection
Long name (short name) [argument types] Properties
-position(-pos) float float float queryeditmultiuse
Position in space where you want to place a field. The gravity then emanates from this position in space rather than from an object. Note that you can both use -pos (creating a field at a position) and also provide object names.

In query mode, this flag needs a value.

-magnitude(-m) float queryedit
Strength of field.

In query mode, this flag needs a value.

-attenuation(-att) float queryedit
Attentuation rate of field

In query mode, this flag needs a value.

-maxDistance(-mxd) float queryedit
Maximum distance at which field is exerted. -1 indicates that the field has no maximum distance.

In query mode, this flag needs a value.

-name(-n) string queryedit
name of field

In query mode, this flag needs a value.

-perVertex(-pv) boolean queryedit
Per-vertex application. If this flag is set true, then each individual point (CV, particle, vertex,etc.) of the chosen object exerts an identical copy of the force field. If this flag is set to false, then the force is exerted only from the geometric center of the set of points.

In query mode, this flag needs a value.

-directionX(-dx) float queryedit
X-component of direction.

In query mode, this flag needs a value.

-directionY(-dy) float queryedit
Y-component of direction.

In query mode, this flag needs a value.

-directionZ(-dz) float queryedit
Z-component of direction

In query mode, this flag needs a value.

-useDirection(-ud) boolean queryedit
Enable/disable direction. Drag will use -dx/-dy/-dz arguments if and only if this flag is set true.

In query mode, this flag needs a value.


Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command

Return value


string

Related

addDynamic, connectDynamic, particle

MEL examples

// Creates a drag field resisting in direction (0,1,0.5).
 drag -dx 0 -dy 1.0 -dz 0.5 -useDirection true;

// Edits the acceleration value of the field myDrag
   drag -e -m 0.75 myDrag;

// Queries myDrag for its magnitude
   drag -q -m myDrag;