pymel.core.effects.uniform

static effects.uniform(*args, **kwargs)

A uniform field pushes objects in a fixed direction. The field strength, but not the field direction, depends on the distance from the object to the field location. 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:
Long name (short name) Argument Types Properties
attenuation (att) float ../../../_images/query.gif ../../../_images/edit.gif
 
Attentuation rate of field
directionX (dx) float ../../../_images/query.gif ../../../_images/edit.gif
 
X-component of direction.
directionY (dy) float ../../../_images/query.gif ../../../_images/edit.gif
 
Y-component of direction.
directionZ (dz) float ../../../_images/query.gif ../../../_images/edit.gif
 
Z-component of direction Flag can have multiple arguments, passed either as a tuple or a list.
magnitude (m) float ../../../_images/query.gif ../../../_images/edit.gif
 
Strength of field.
maxDistance (mxd) float ../../../_images/query.gif ../../../_images/edit.gif
 
Maximum distance at which field is exerted. -1 indicates that the field has no maximum distance.
name (n) unicode ../../../_images/query.gif ../../../_images/edit.gif
 
name of field
perVertex (pv) bool ../../../_images/query.gif ../../../_images/edit.gif
 

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.

position (pos) float, float, float ../../../_images/query.gif ../../../_images/edit.gif
 

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.

torusSectionRadius (tsr) float ../../../_images/query.gif ../../../_images/edit.gif
   
volumeExclusion (vex) bool ../../../_images/query.gif ../../../_images/edit.gif
   
volumeOffset (vof) float, float, float ../../../_images/query.gif ../../../_images/edit.gif
   
volumeShape (vsh) unicode ../../../_images/query.gif ../../../_images/edit.gif
   
volumeSweep (vsw) float ../../../_images/query.gif ../../../_images/edit.gif
   

Derived from mel command maya.cmds.uniform

Example:

import pymel.core as pm

pm.uniform( dx=0, dy=1.0, dz=0.5 )
# Result: nt.UniformField(u'uniformField1') #
# Creates a uniform field pushing in direction (0,1,0.5) for every
# active selection. If there is no active selection, it creates this
# field at world position (0,0,0).

pm.uniform( 'uniformF', e=True, att=0.98 )
# edits the acceleration value of the field uniformF
pm.uniform( 'uniformF', q=True, att=1 )
# queries uniformF for its acceleration value

Previous topic

pymel.core.effects.turbulence

Next topic

pymel.core.effects.volumeAxis

Core

Core Modules

Other Modules

This Page