Hi all! I'm trying to implement a button to show a guideview of a model target, basically when the button is pressed a script attached to the model target with a function is called. The function is:
public void GuideView()
{
modelTargetBehaviour.GuideViewMode = ModelTargetBehaviour.GuideViewDisplayMode.GuideView2D;
}
Actually nothing is appearing on the screen, could it be that the canvas is hiding the guideview? Is there any solution?
thanks to all
Hi,
I made it exactly like you did. But you are trying to do some other things in your project as well. And if I get it right, I think it is not possible because you can't track 2 model target at once except you have an advanced model target dataset with more train objects.
You could do is show a button with the first model target where you can load the other one. When you click the button the first would stop tracking and the second guide view would appear.
Let me know if that fits for you and I show you how to do that.