Go to: Synopsis. Return value. Keywords. Flags. MEL examples.
cacheFileCombine [-cacheIndex] [-channelName string] [-connectCache string] [-keepWeights] [-layerNode] [-nextAvailable] [-object string] [-objectIndex int]
cacheFileCombine is undoable, queryable, and editable.
Creates a cacheBlend node that can be used to combine, layer or blend multiple cacheFiles for a given object.
string | Name of created cache layer node(s) |
In query mode, return type is based on queried flag.
cache, file, disk, blend
cacheIndex, channelName, connectCache, keepWeights, layerNode, nextAvailable, object, objectIndex
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.
|
// Create a cacheBlend node so that additional caches can be added to
// the shape. This will attach the existing cacheFile on the shape
// to the new cacheBlend node.
//
select -r cachedShape;
string $newBlend[] = `cacheFileCombine`;
// attach an additional cacheFile to the cacheBlend node
//
cacheFileCombine -e -cc cacheFile2 $newBlend[0];
// query the index of the newly connected cache
//
cacheFileCombine -cc cacheFile2 -q -cacheIndex $newBlend[0];
// When more than one object is driven by the caches connected
// to the cacheBlend node, the -channelName and -objectIndex flags can be
// used to control which is connected.
//
// Query the objectIndex for the armShape geometry driven by cacheBlend3:
//
string $index = `cacheFileCombine -object armShape -q -objectIndex cacheBlend3`;
// Connect another cache up to drive the armShape
//
cacheFileCombine -channelName "myChannel" -objectIndex $index -e -cc cacheFile2 cacheBlend3;