pymel.core.animation.keyingGroup

keyingGroup(*args, **kwargs)

This command is used to manage the membership of a keying group. Keying groups allow users to effectively manage related keyframe data, allowing keys on attributes in the keying group to be set and edited as a single entity.

Flags:
Long name (short name) Argument Types Properties
activator (act) unicode ../../../_images/query.gif ../../../_images/edit.gif
 
Sets the selected node(s) as activators for the given keying group. In query mode, returns list of objects that activate the given keying group
addElement (add) PyNode ../../../_images/edit.gif
 

Adds the list of items to the given set. If some of the items cannot be added to the set because they are in another set which is in the same partition as the set to edit, the command will fail.

afterFilters (af) bool ../../../_images/edit.gif
 

Default state is false. This flag is valid in edit mode only. This flag is for use on sets that are acted on by deformers such as sculpt, lattice, blendShape. The default edit mode is to edit the membership of the group acted on by the deformer. If you want to edit the group but not change the membership of the deformer, set the flag to true.

category (cat) unicode ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

Sets the keying group’s category. This is what the global, active keying group filter will use to match.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list.

clear (cl) PyNode ../../../_images/edit.gif
 
An operation which removes all items from the given set making the set empty.
color (co) int ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

Defines the hilite color of the set. Must be a value in range [-1, 7] (one of the user defined colors). -1 marks the color has being undefined and therefore not having any affect. Only the vertices of a vertex set will be displayed in this color.

copy (cp) PyNode ../../../_images/create.gif
 
Copies the members of the given set to a new set. This flag is for use in creation mode only.
edges (eg) bool ../../../_images/create.gif ../../../_images/query.gif
 
Indicates the new set can contain edges only. This flag is for use in creation or query mode only. The default value is false.
editPoints (ep) bool ../../../_images/create.gif ../../../_images/query.gif
 
Indicates the new set can contain editPoints only. This flag is for use in creation or query mode only. The default value is false.
empty (em) bool ../../../_images/create.gif
 

Indicates that the set to be created should be empty. That is, it ignores any arguments identifying objects to be added to the set. This flag is only valid for operations that create a new set.

excludeDynamic (ed) bool ../../../_images/create.gif
 
When creating the keying group, exclude dynamic attributes.
excludeRotate (er) bool ../../../_images/create.gif
 
When creating the keying group, exclude rotate attributes from transform-type nodes.
excludeScale (es) bool ../../../_images/create.gif
 
When creating the keying group, exclude scale attributes from transform-type nodes.
excludeTranslate (et) bool ../../../_images/create.gif
 

When creating the keying group, exclude translate attributes from transform-type nodes. For example, if your keying group contains joints only, perhaps you only want to include rotations in the keying group.

excludeVisibility (ev) bool ../../../_images/create.gif
 
When creating the keying group, exclude visibility attribute from transform-type nodes.
facets (fc) bool ../../../_images/create.gif ../../../_images/query.gif
 
Indicates the new set can contain facets only. This flag is for use in creation or query mode only. The default value is false.
flatten (fl) PyNode ../../../_images/edit.gif
 

An operation that flattens the structure of the given set. That is, any sets contained by the given set will be replaced by its members so that the set no longer contains other sets but contains the other sets’ members.

forceElement (fe) PyNode ../../../_images/edit.gif
 

For use in edit mode only. Forces addition of the items to the set. If the items are in another set which is in the same partition as the given set, the items will be removed from the other set in order to keep the sets in the partition mutually exclusive with respect to membership.

include (include) PyNode ../../../_images/edit.gif
 

Adds the list of items to the given set. If some of the items cannot be added to the set, a warning will be issued. This is a less strict version of the -add/addElement operation.

intersection (int) PyNode ../../../_images/create.gif
 
An operation that returns a list of items which are members of all the sets in the list.
isIntersecting (ii) PyNode ../../../_images/create.gif
 
An operation which tests whether the sets in the list have common members.
isMember (im) PyNode ../../../_images/create.gif
 
An operation which tests whether all the given items are members of the given set.
layer (l) bool ../../../_images/create.gif
 
OBSOLETE. DO NOT USE.
name (n) unicode ../../../_images/create.gif
 
Assigns string as the name for a new set. This flag is only valid for operations that create a new set.
noSurfaceShader (nss) bool ../../../_images/create.gif
 

If set is renderable, do not connect it to the default surface shader. Flag has no meaning or effect for non renderable sets. This flag is for use in creation mode only. The default value is false.

noWarnings (nw) bool ../../../_images/create.gif
 
Indicates that warning messages should not be reported such as when trying to add an invalid item to a set. (used by UI)
nodesOnly (no) bool ../../../_images/query.gif
 

This flag is usable with the -q/query flag but is ignored if used with another queryable flags. This flag modifies the results of the set membership query such that when there are attributes (e.g. sphere1.tx) or components of nodes included in the set, only the nodes will be listed. Each node will only be listed once, even if more than one attribute or component of the node exists in the set.

remove (rm) PyNode ../../../_images/edit.gif
 
Removes the list of items from the given set.
removeActivator (rac) unicode ../../../_images/edit.gif
 
Removes the selected node(s) as activators for the given keying group.
renderable (r) bool ../../../_images/create.gif ../../../_images/query.gif
 

This flag indicates that a special type of set should be created. This type of set (shadingEngine as opposed to objectSet) has certain restrictions on its membership in that it can only contain renderable elements such as lights and geometry. These sets are referred to as shading groups and are automatically connected to the “renderPartition” node when created (to ensure mutual exclusivity of the set’s members with the other sets in the partition). This flag is for use in creation or query mode only. The default value is false which means a normal set is created.

setActiveFilter (fil) unicode ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 

Sets the global, active keying group filter, which will affect activation of keying groups. Only keying groups with categories that match the filter will be activated. If the setActiveFilter is set to “NoKeyingGroups”, keying groups will not be activated at all. If the setActiveFilter is set to “AllKeyingGroups”, we will activate any keying group rather than just those with matching categories.

size (s) bool ../../../_images/query.gif
 
Use the size flag to query the length of the set.
split (sp) PyNode ../../../_images/create.gif
 
Produces a new set with the list of items and removes each item in the list of items from the given set.
subtract (sub) PyNode ../../../_images/create.gif
 
An operation between two sets which returns the members of the first set that are not in the second set.
text (t) unicode ../../../_images/create.gif ../../../_images/query.gif ../../../_images/edit.gif
 
Defines an annotation string to be stored with the set.
union (un) PyNode ../../../_images/create.gif
 
An operation that returns a list of all the members of all sets listed.
vertices (v) bool ../../../_images/create.gif ../../../_images/query.gif
 
Indicates the new set can contain vertices only. This flag is for use in creation or query mode only. The default value is false.

Derived from mel command maya.cmds.keyingGroup

Example:

import pymel.core as pm

import maya.cmds as cmds

import maya.cmds as cmds

pm.file(f=1, new=1)

# Create a keying group with keyable attrs of the currently selected
# object
#
pm.polySphere(n='sphere1')
sphereKG = pm.keyingGroup(n='sphereKG')

# Query the members: should return sphere1's visiblity and TRS
members = pm.keyingGroup(sphereKG, q=True)

# Create a keying group which contains another keying group
parentKG = pm.keyingGroup(sphereKG, n='parentKG')

# keying the parent KG should automatically key the sub KGs as well
pm.select(parentKG)
pm.setKeyframe(time=1)

# Add 2 other spheres to the sphereKG
pm.polySphere(n='sphere2');
pm.polySphere(n='sphere3');
pm.keyingGroup('sphere2', 'sphere3', e=True, add=sphereKG)

# Make another object the activator for the sphereKG. So if
# this object is keyed, the sphereKG will be keyed
# Note: the activator itself does not have to be part of the
# keying group. If it is not part of the keyingGroup, it
# will not be keyed. So only the spheres will be keyed below.
# If the cube is to be keyed as well, execute:
# pm.keyingGroup('cube1',e=True, add=sphereKG)
pm.polyCube(n='cube1')
pm.keyingGroup('cube1',e=True,activator=sphereKG)
pm.select('cube1')
pm.setKeyframe(t=10)

Previous topic

pymel.core.animation.keyframeStats

Next topic

pymel.core.animation.lattice

Core

Core Modules

Other Modules

This Page