📜  UnityC#代码示例中的委托

📅  最后修改于: 2022-03-11 14:49:21.649000             🧑  作者: Mango

代码示例2
public delegate void myDelegate();
public myDelegate Del;
 void start()
{
 Del = () => { Debug.log(" Hello there"): };
}
void Update()
{
 if(Input.getkeydown(keycode.space))
      Del();
}