标签: unity3d arcore android-augmented-reality
我是开发ARCore应用程序的新手。我正在尝试开发,但只有3D对象出现在扫描表面之后。我希望UI按钮能够正常工作,并且在单击按钮时具有动画效果。任何人都可以帮助我并逐步提供教程吗?
答案 0 :(得分:1)
对于UIButton播放动画:
public GameObject your3dGameObject public void OnButtonClick() { your3dGameObject.GetComponent<Animation>().Play("animationName"); }
您可以将canvas的转换设置为3DGameObject的子级,然后UIButton将随着表面检测而出现/消失。