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

Vicon Shogun banner

Description

Used to determine the number of modules that currently exist in Shogun Post. The command, without any flags, returns a count of every module in the scene.

Functional area

Data retrieval

Command syntax

Syntax

getNumModules [-type string] [-selected]

Arguments

None

Flags

NameFlag argumentsArgument typeExclusive toComments
type1stringReturns the number of modules of the specified type.
selected0Returns the number of currently selected modules.

Return value

integer

Examples

$i = `getNumModules`; 
print $i; //Output "1243"

$i = `getNumModules -type Marker`;
print $i; //Output "828"

$i = `getNumModules -type Bone`;
print $i; //Output "123";

select RightUpLeg RKNE;
$i = `getNumModules -selected`;
print $i; //Output "2";

$i = `getNumModules -type Bone -selected`;
print $i; //Output "1";