GetCameraNames

Get all camera names defined in the current project.

Function

string[] GetCameraNames()

Return Value

Returns an array of strings containing all of the camera names.

Example

Prints all the camera names of the current project to the console.

let cameras = SYM3.GetCameraNames();
for (let i = 0; i < cameras.length; ++i)
{
    console.log(" Camera = " + cameras[i]);
}