Multiple Clicks on 1 Object

A student wants a different cloud to appear on a giant “Death Star” each time they click/tap the “Death Star” ellipsoid. But currently, only the first cloud appears on the first click, but the second cloud DOES NOT appear on the second click.

How can they make this work? Here is the space (set to remix): https://cospac.es/WiTs

This is the same kind of a problem that you faced in the different topic and the answer is the same: only one event handler of a given type can be active at the same time on a given item. In other words, when you use two when Ellipsoid is clicked event handlers, the second handler overwrites the first one.

Here is one of the possible proper ways of implementing requested behaviour: CoSpaces Edu :: Consecutive clicks

1 Like

Thank you so much for your help, Pavel!! He’s working on it now!

1 Like