API reference
API reference
Select your platform
No SDKs available
No versions available

InstallationRoutineCheckpoint Class

Contains all Metadata related to the installation of a block, typically the variants and interfaces choices required by the installation process.
The data is serialized in the owner BuildingBlock MonoBehaviour. Installation Routines and Variants are a part of Meta XR Building Blocks. For more information, see Building Blocks
The data is set automatically into these serializable classes on installation of a BuildingBlock.

Constructors

InstallationRoutineCheckpoint ( installationRoutineId , installationVariants )
Constructor for a InstallationRoutineCheckpoint, which helps serializing data used during the installation of a BuildingBlock.
Signature
InstallationRoutineCheckpoint(string installationRoutineId, List< VariantCheckpoint > installationVariants)
Parameters
installationRoutineId: string
installationVariants: List< VariantCheckpoint >

Properties

InstallationRoutineId : string
[Get]
Identifies the Meta.XR.BuildingBlocks.Editor.InstallationRoutine used to install the owner BuildingBlock.
During the installation, this is used to know which routine should be applied. After installation, this is stored to keep an history on how the block was installed.
Signature
string InstallationRoutineId
InstallationVariants : List< VariantCheckpoint >
[Get]
List of all variant options used for the installation of the owning BuildingBlock.
During the installation, these are used to know which variants to apply during the installation routine. After installation, these are used to keep an history on the variants that were used for this block.
Signature
List<VariantCheckpoint> InstallationVariants