"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

1-to-1 associate image target to 3D model by name in code

I feel like this is simple enough that it has been answered, but I just can't find exactly what I'm looking for.

I want to have a dataset with a number of image targets, eg. car, bus, person, etc. I also want to have one 3D model that directly corresponds to each of these targets, eg. car.fbx, bus.fbx, person.fbx, etc. Then, all I want to do is programmatically associate each image target with it's relevant 3D model, using names/filenames.

Any tips?

Lots of ways to do this. Maybe consider a dictionary of prefabs that are loaded from the Resources folder with the key being the target name.   Then in OnTrackingFound, get the trackable name, look it up in the dictionary then load the prefab.