hi ...
im succes with simple move object with mesh navigation . and have problem . i want object first in first image target move to object second in image target second when image target second detected.
like this
http://adventureclubgames.com/wordpress/?p=176
if u see .. in above. there have two object. and one object be purpose when first object moving. and my problem. im save two object in two marker. but if two marker detected in ARcamera. the first object move to second object.
any reference ? i'll try with simple example in above. but move object not clear
If I understand correctly what you describe,
you should be able to do this by saving the reference frame of the first target when the second is detected, and then compute a relative transformation of one target rference frame to the other.
Based on this, you could implement the animation of the target; we don't have a tutorial for this,
but have a look at the Unity Transform class, which provides the relevant method, to start with:
http://docs.unity3d.com/Documentation/ScriptReference/Transform.html
The rest sounds more like Unity animation programming and 3D maths.