Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在脚本中有这个:
Button button = GameObject.FindGameObjectWithTag("MainCanvas").GetComponentInChildren<Button>();
在该脚本的 Update() 函数中,我想做这样的事情:
if button clicked { // do something }
请有人可以解释我怎么能做到这一点?
不要那样做!
请改用检查器。选择您的按钮,找到 Button 组件,导航到 OnClick() 部分,选择您想与之交互的游戏对象,拖放到可用插槽上,然后找到合适的功能。