![]() |
KudanAR - iOS
1.6.0
|
#import <ARImageTrackableSet.h>
Inherits NSObject.
Instance Methods | |
(instancetype) | - initWithPath: |
(instancetype) | - initWithBundledFile: |
(void) | - allowRecoveryMode |
(void) | - forceRecoveryMode |
(void) | - prohibitRecoveryMode |
Properties | |
NSUInteger | numberOfTrackables |
NSArray * | trackables |
This class represents a set of ARImageTrackable objects, typically imported from a .KARMarker file.
- (void) allowRecoveryMode |
Set this marker set to use flow recovery, if the global setting is switched on (default to global setting). This applies to all markers in the set. To alter a specific marker within the set, it is necessary to take the trackable from the array and set it individually.
Example of use:
- (void) forceRecoveryMode |
Make this marker set use flow recovery irrespective of the global setting. This applies to all markers in the set.
Example of use:
- (instancetype) initWithBundledFile: | (NSString *) | file |
Initialise an ARImageTrackableSet with a trackable set file.
Example of use:
file | The file relative to the main bundle, including the file extension. This file should have been generated using the Kudan AR Toolkit and be in the .KARMarker format. |
- (instancetype) initWithPath: | (NSString *) | path |
Initialise an ARImageTrackableSet with a trackable set file.
Example of use:
path | The full path name to the trackable set file. This includes all folders and the file extension. This file should have been generated by the Kudan AR Toolkit and be in the .KARMarker format. |
- (void) prohibitRecoveryMode |
Prevent this set marker from using flow recovery, irrespective of the global setting. This applies to all markers in the set.
Example of use:
|
readnonatomicassign |
The number of trackables in this set.
|
readnonatomicassign |
The array of ARImageTrackable objects in this set.