Ejemplo n.º 1
0
 private void update()
 {
     if (Input.GetKeyDown(KeyCode.Space))
     {
         spaceCount++;
         OnspacePressed?.Invoke(this, new OnSpacePressedEventArgs {
             spaceCount = spaceCount
         });
         OnFloatEvent?.Invoke(5.5f);
         OnActionEvent?.Invoke(true, 56);
         OnUnityEvent?.Invoke();
     }
 }
Ejemplo n.º 2
0
 void Update()
 {
     time -= Time.deltaTime;
     onTimeEvent.Invoke(time);
     if (time <= 0)
     {
         onTimeOverEvent.Invoke();
         if (repeat)
         {
             time = startTime;
         }
         else
         {
             enabled = false;
         }
     }
 }
Ejemplo n.º 3
0
 public void PublishEvents()
 {
     OnFloatEvent?.Invoke(4.5f);
     OnIntEvent?.Invoke(4);
     OnStringEvent?.Invoke("Go GO PowerRangers");
 }