Go to: Synopsis. Return value. Keywords. Flags. MEL examples.
cacheFileTrack [-insertTrack uint] [-lock boolean] [-mute boolean] [-removeEmptyTracks] [-removeTrack uint] [-solo boolean] [-track uint]
cacheFileTrack is undoable, queryable, and editable.
This command is used for inserting and removing tracks related to the caches displayed in the trax editor. It can also be used to modify the track state, for example, to lock or mute a track.
None
In query mode, return type is based on queried flag.
cache, file, disk, blend, trax, track
insertTrack, lock, mute, removeEmptyTracks, removeTrack, solo, track
Long name (short name) |
Argument types |
Properties |
-insertTrack(-it)
|
uint
|
|
|
This flag is used to insert a new empty track at the track index
specified.
|
|
-lock(-l)
|
boolean
|
|
|
This flag specifies whether clips on a track are to be locked or not.
|
|
-mute(-m)
|
boolean
|
|
|
This flag specifies whether clips on a track are to be muted or not.
|
|
-removeEmptyTracks(-ret)
|
|
|
|
This flag is used to remove all tracks that have no clips.
|
|
-removeTrack(-rt)
|
uint
|
|
|
This flag is used to remove the track with the specified index. The
track must have no clips on it before it can be removed.
|
|
-solo(-so)
|
boolean
|
|
|
This flag specifies whether clips on a track are to be soloed or not.
|
|
-track(-t)
|
uint
|
|
|
Used to specify a new track index for a cache to be displayed. Track-indices are 1-based.
|
|
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.
|
// Move the cache clip named "cubeCache2" to track 3
//
cacheFileTrack -track 3 cubeCache2;
// Lock the track containing the cache clip named "sphCache1"
//
cacheFileTrack -lock 1 sphCache1;
// Remove any empty cache tracks for the object "sphereShape1"
//
cacheFileTrack -removeEmptyTracks sphereShape1;
// query the track index of the cache clip named "sphCache1"
//
cacheFileTrack -q -track sphCache1;