ADSK.C360.checkCompatibility(callback)

Performs a compatibility check to see if the user's browser is compatible with the Configurator 360 Viewer.

callback

Type: Callback Function.

Results in a Plain Object with the following properties:

compatible
Type: Boolean.
true if compatible, otherwise false.
reason
Type: Number.
Specifies a code representing the reason for the value of the compatible property.
All possible values are represented by the properties on ADSK.C360.loadedState.

Examples:

{
    compatible: true, // Is Compatible
    reason: ADSK.C360.loadedState.Loaded,
}

{
    compatible: false, // Is Not Compatible
    reason: ADSK.C360.loadedState.Not3DCapable,
}