trackable.drawables.addCamDrawable and trackable.drawables.removeCamDrawable
should fit your needs.
Best regards
T
Tarun K
said
about 8 years ago
Hey Andreas,
Thanx for you help.It work Perfect when I add and remove the object through Position.It don't work when I add and remove the array of multiple objects.
Example:
It works Great
pageOne.drawables.removeCamDrawable(0);
pageOne.drawables.AddCamDrawable(obj1);
It don't work when I used pass array of object
pageOne.drawables.removeCamDrawable(obj1,obj2);
pageOne.drawables.AddCamDrawable(obj3,obj4);
Please Help me out.
A
Andreas Fötschl
said
about 8 years ago
please use array for that. e.g. pageOne.drawables.removeCamDrawable();
Tarun K