Hi,
I was playing around with the example project but when I tried to drop the TrackableEventHandler script to the Imagetarget Gameobject it gives me this message.
"Can't add script behaviour ITrackableEventHandler. The script can't be an interface!"
Using unity3.4 on a Mac
Hope you can help me out.
Greets Urwin
ITrackableEventHandler is the interface, you need a class that implements the interface. Our sample applications (e.g. ImageTargets) come with a file named TrackableEventHandler.cs in the Scripts folder, this is a sample implementation that you can drag onto the trackables in your scene.
- Kim