示例#1
0
private void TestingEvents_OnSpacePressed(object sender,TestingEvents.OnSpacePressedEventArgs e)
{
Debug.Log("Space!"+e.spaceCount);

}
示例#2
0
 private void Subscriber_OnSpacePressed(object sender, TestingEvents.OnSpacePressedEventArgs e)
 {
     Debug.Log("Subscriber Noticed Space Pressed!");
     Debug.Log("Space Pressed " + e.spaceCount + " times!");
 }