The various cameras which will be activated when this project's Lens turns on.
Example
// LensActivationCamera controls which camera opens when the Lens turns on. // It is set on project.metaInfo.activationCamera. constmodel = this.pluginSystem.findInterface(Editor.Model.IModel) asEditor.Model.IModel; constmetaInfo = model.project.metaInfo;
metaInfo.activationCamera = Editor.Model.LensActivationCamera.Front; console.log('activationCamera set to Front (opens front camera when Lens activates)');
metaInfo.activationCamera = Editor.Model.LensActivationCamera.Rear; console.log('activationCamera set to Rear (opens rear camera when Lens activates)');
The various cameras which will be activated when this project's Lens turns on.
Example