Interface ARCreateOptions

Options for creating a new AR Scene.

interface ARCreateOptions {
    onProgress?: ((data) => void);
}

Properties

Properties

onProgress?: ((data) => void)

Callback to provide progress updates to the user.

Type declaration

    • (data): void
    • Parameters

      • data: {
            connectionId: string;
            currentStep: string;
            overallProgress: string;
            totalSteps: string;
        }
        • connectionId: string
        • currentStep: string
        • overallProgress: string
        • totalSteps: string

      Returns void

Generated using TypeDoc