![]() |
Debug.Log Extensions
Documentation (1.1.9)
|
|
static |
Stop displaying a button on screen.
void OnEnable() { Debug.DisplayButton(()=>SayHello()); }
void SayHello() { Debug.Log("Hello!"); }
void OnDisable() { Debug.CancelDisplayButton(()=>SayHello()); }
onClicked | Expression pointing to a method that is being displayed on screen as a button. |