Metadata of the current project's Lens.

interface MetaInfo {
    activationCamera: LensActivationCamera;
    iconPath: Path;
    isIconSet: boolean;
    lensApplicability: LensApplicability[];
    lensName: string;
    setIcon(externalPath: Path): void;
}

Properties

activationCamera: LensActivationCamera

The camera which will be activated when this Lens is turned on.

iconPath: Path

The absolute path to the Lens Icon.

isIconSet: boolean

Whether an Lens icon has been set.

lensApplicability: LensApplicability[]

Where the Lens can be used.

lensName: string

The publicly visible name of the Lens.

Methods

  • Sets the icon as the Lens' icon.

    Parameters

    Returns void