标签: c# unity3d input
在旧系统中,我们可以:
Update{ if(GetButton("xxx"){ // Do something until its released... } }
如何在新系统中重新创建它?
答案 0 :(得分:1)
尝试使用:
Update () { if (Input.GetButtonDown("xxx")) { ..... } }