unreal.ARSessionStatusType

class unreal.ARSessionStatusType

Bases: unreal.EnumBase

Describes the current status of the AR session.

C++ Source:

  • Module: AugmentedReality

  • File: ARTypes.h

FATAL_ERROR

The AR session encountered fatal error; the developer should call StartARSession() to re-start the AR subsystem.

Type

3

NOT_STARTED

Unreal AR session has not started yet.

Type

0

NOT_SUPPORTED

Unreal AR session failed to start due to the AR subsystem not being supported by the device.

Type

2

OTHER

Session isn’t running due to unknown reason; see: FARSessionStatus::AdditionalInfo for more information

Type

6

PERMISSION_NOT_GRANTED

AR session failed to start because it lacks the necessary permission (likely access to the camera or the gyroscope).

Type

4

RUNNING

Unreal AR session is running.

Type

1

UNSUPPORTED_CONFIGURATION

AR session failed to start because the configuration isn’t supported.

Type

5