This information is for Vicon Shogun 1.7. For up-to-date help, see the latest Shogun documentation.

Vicon Shogun banner

Description

Create a new layer in the active clip

An error is generated if there is no clip in the scene.

Functional area

NLE

Command syntax

Syntax

addLayer "layerName"

Arguments

NameTypeRequiredComments
layerNamestringyesThe name of the layer to add

Flags

None

Return value

void

Examples

// Print the name of the active clip
string $clip = `getActiveClip`;
print $clip;

// Add new layer
string $name = "new layer";
addLayer $name;
// Print all layers
string $layers [];
$layers = `getLayers`;
print $layers;

Additional info

Related commands