Declared in WTArchitectView.h

WTAugmentedRealityMode

The WTAugmentedRealityMode is used to specify which type of augmented reality is used in an ARchitect World. Based on the WTAugmentedRealityMode, different device capabilities are required and different components of the SDK are used. By setting the appropriate augmented reality mode for a ARchitect World the best performance can be provided by the SDK.

Definition

typedef NS_ENUM(NSUInteger, WTAugmentedRealityMode ) {
   WTAugmentedRealityMode_Geo = 1,
   WTAugmentedRealityMode_ImageRecognition,
   WTAugmentedRealityMode_IR,
   WTAugmentedRealityMode_GeoAndImageRecognition,
   WTAugmentedRealityMode_Both,
};

Constants

WTAugmentedRealityMode_Geo

Use this augmented reality mode if your ARchitect World is using e.g. AR.GeoLocations and AR.GeoObjects. This mode requires access to the camera and the user location so please make sure to specify a value for the ‘NSLocationWhenInUseUsageDescription’ key in your *-Info.plist when using the SDK on iOS 8 or later. Note that this mode also supports image recognition functionality. (Deprecated: since version 4.1 )

Declared In WTArchitectView.h.

WTAugmentedRealityMode_ImageRecognition

Use this augmented reality mode if your ARchitect World is using e.g. AR.Tracker and AR.Trackable2DObjects. This mode does require access to the camera. Note that this mode does not support geo functionality! (Deprecated: since version 4.1 )

Declared In WTArchitectView.h.

WTAugmentedRealityMode_IR

Same as WTAugmentedRealityMode_ImageRecognition (Deprecated: since version 4.0.2 )

Declared In WTArchitectView.h.

WTAugmentedRealityMode_GeoAndImageRecognition

A combinded augmented reality mode for mixed ARchitect Worlds that are using geo and image recognition functionality.

Declared In WTArchitectView.h.

WTAugmentedRealityMode_Both

Same as WTAugmentedRealityMode_GeoAndImageRecognition (Deprecated: since version 4.0.2 )

Declared In WTArchitectView.h.

Declared In

WTArchitectView.h