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

Synopsis

connectDynamic [-collisions dagobject] [-delete] [-emitters dagobject] [-fields dagobject] [objects]

connectDynamic is undoable, NOT queryable, and NOT editable.

Dynamic connection specifies that the force fields, emitters, or collisions of an object affect another dynamic object. The dynamic object that is connected to a field, emitter, or collision object is influenced by those fields, emitters and collision objects.

Connections are made to individual fields, emitters, collisions. So, if an object owns several fields, if the user wants some of the fields to affect an object, s/he can specify each field with a "-f" flag; but if the user wants to connect all the fields owned by an object, s/he can specify the object name with the "-f" flag. The same is true for emitters and collisions. Different connection types (i.e., for fields vs. emitters) between the same pair of objects are logically independent. In other words, an object can be influenced by another object's fields without being influenced by its emitters or collisions.

Each connected object must be a dynamic object. The object connected to can be any object that owns fields, emitters, etc.; it need not be dynamic. Objects that can own influences are particles, geometry objects (nurbs and polys) and lattices. You can specify either the shape name or the transform name of the object to be influenced.

Return value

string

Related

air, drag, emitter, gravity, newton, particle, radial

Flags

collisions, delete, emitters, fields
Long name (short name) Argument types Properties
-fields(-f) dagobject createmultiuse
Connects each object to the fields of the given object.
-emitters(-em) dagobject createmultiuse
Connects each object to the emitters of the given object.
-collisions(-c) dagobject createmultiuse
Connects each object to the collision models of the given object.
-delete(-d) create
Deletes existing connections.

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.

MEL examples

connectDynamic -c Floor Book;
// Connects the dynamic object "Book" to the collision model of the
// "Floor". This means that the book will collide with and bounce off of
// the floor.

connectDynamic -f Moon -e Moon Spaceship;
// Connects dynamic object "Spaceship" to the all fields and emitters
// owned by "Moon".

connectDynamic -f newtonField1 Spaceship;
// Connects dynamic object "Spaceship" to "newtonField1" owned by "Moon".

connectDynamic -f newtonField1 -e Moon;
// If the selection list consists of "Spaceship", connects dynamic object
// "Spaceship" to "newtonField1" and all emitters owned by "Moon".

connectDynamic -d -f Moon Spaceship;
// Deletes the field connection between all the fields owned by "Moon" and
// "Spaceship". Note that the command establishing the connection need not
// be in the undo queue.

connectDynamic -d -f newtonField1 Spaceship;
// Deletes the field connection between "newtonField1" owned by "Moon" and
// "Spaceship".