Go to: Synopsis. Return value. Flags. MEL examples.
soft [-convert] [-duplicate] [-duplicateHistory] [-goal float] [-hideOriginal boolean] [-name string]
selectionList
soft is undoable, queryable, and NOT editable.
Makes a soft body from the object(s) passed on the command line or in the selection list. The geometry can be a NURBS, polygonal, lattice object. The resulting soft body is made up of a hierarchy with a particle shape and a geometry shape, thus:
T
/ \
T G
/
P
Dynamics are applied to the particle shape and the resulting particle positions then drive the locations of the geometry's CVs, vertices, or lattice points.
With the convert option, the particle shape and its transform are simply inserted below the original shape's hierarchy. With the duplicate option, the original geometry's transform and shape are duplicated underneath its parent, and the particle shape is placed under the duplicate. Note that any animation on the hierarchy will affect the particle shape as well. If you do not want then, then reparent the structure outside the hierarchy.
When duplicating, the soft portion (the duplicate) is given the name "copyOf" + "original object name". The particle portion is always given the name "original object name" + "Particles."
None of the flags of the soft command can be queried. The soft -q command is used only to identify when an object is a soft body, or when two objects are part of the same soft body. See the examples.
string | array |
In query mode, return type is based on queried flag.
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-convert(-c)
|
|
![]() |
||
|
||||
-duplicate(-d)
|
|
![]() |
||
|
||||
-duplicateHistory(-dh)
|
|
![]() |
||
|
||||
-goal(-g)
|
float
|
![]() |
||
|
||||
-hideOriginal(-h)
|
boolean
|
![]() |
||
|
||||
-name(-n)
|
string
|
|||
|
![]() |
![]() |
![]() |
![]() |
sphere; soft -c nurbsSphere1; // Creates a sphere named nurbsSphere1 and converts nurbSphere1 into // a soft object. The particle portion of the soft object will // be parented (with its own transform) under nurbsSphere1. sphere; soft -d nurbsSphere1; // Same as the previous example, except that the soft command will make // a duplicate of nurbsSphereShape1. The resulting soft body will be // completely independent of nurbSphere1 and its children. Input connections // to nurbsSphereShape1 will be duplicated, but not any upstream history // (in other words, just plain "duplicate"). sphere; soft -dh nurbsSphere1; // Same as the previous example, except that upstream history on // nurbsSphereShape1 will be duplicated as well (equivalent to // "duplicate history"). sphere; soft -g 0.3 nurbSphere1; // This will make a duplicate of the shape under nurbSphere1 (as for -d), // and use it as the shape for the newly created soft object. // The original nurbsSphereShape1 will be made a goal for the particles of // softy, with a goal weight of 0.3. This will make those particles try to // follow nurbSphere1 loosely as it moves around. soft -q foobar; // Returns true if foobar is a soft object. soft -q foobar foobarParticles; // Returns true if foobar and foobarParticles are parts of the same // soft object. This is useful because when you select a soft body, // both the overall transform and the particle transform get put into // the selection list.