Single ImageTrackable to add 30 2dmapfiles tracking data in array
Please provide your development details as below;
1. SDK Version:4.14
2. Development Environment: Unity-Android, Unity-iOS,
3. Tracker/Scanner: ImageTrackable
4. License Type(Free / Pro-One Time Fee / Pro-Subscription / Enterprise): free
5. Target Device(Optional):
I have 30 2dmapfiles . so create 30 image tracable in hierachy . so possible to add 30 2dmapfiles in array
Now you can track 30 images.
Leo
Maxst Support Team
trackable contains information about the objects that are currently tracked.
If you want to get the name of the 30 trackers you want, you can use the trackable.GetName () function.
See the for statement below as part of the example.
for (int i = 0; i <trackingResult.GetCount (); i ++)
{
Trackable trackable = trackingResult.GetTrackable (i);
imageTrackablesMap [trackable.GetName ()]. OnTrackSuccess (
trackable.GetId (), trackable.GetName (), trackable.GetPose ());
}
Leo
Maxst Support Team