Unity通过脚本给按钮动态添加响应事件
程序员文章站
2022-03-31 20:47:40
...
添加事件的按钮
public Button startBtn;
使用onClick添加事件
startBtn.onClick.AddListener(startGame);
事件函数
public void startGame()
{
Debug.Log("游戏开始!");
}
上一篇: MATLAB读取文件夹中所有图像