Need timer for ping pong game

I am currently making a ping pong game I want to create a timer for 20 seconds

Look in the Sensors drawer for a Clock.

  1. Go to Sensors > Clock. Drag out a Clock component.

  2. Set the Properties of the clock to this. We make it time 20000/1000 = 20 seconds, and we disable the clock first.

image

  1. After you have set the properties:

    • If you want to enable/disable the timer, use this.

      blocks

    • When the timer has counted 20 seconds, this event is used. You might want to disable the timer here.

      component_event

1 Like

Thank you so much I did not know it was multiples of 1000

How do I make the text box display the timer?

Since the timer only times 20 seconds, you would need another Clock with its TimerInterval as 1000 (1000/1000 = 1 second).

Clock1 has its TimerInterval as 20000, while Clock2 has its TimerInterval as 1000.

Properties for the Clocks:

image image

AIA:

PingPong.aia (2.8 KB)

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.