Make a function as a constructor replacement, and this is where it gets confusing to me:
<img src="http://cannedessence.com/construct2screens/constructor2.png" border="0" />
Why does this work? Notice the second action in the Create_Ball function. Shouldn't this pick all instances of Ball, since the event doesn't pick any instances of Ball? Somehow it picks the most recently created Ball, which works here. However, it doesn't seem right, so I don't want to rely on it.
I can't put an On Created trigger inside the function definition because they are both triggers.
Is there something I'm missing about this?
Thanks!
The create action picks the created instance, so you are only referring to that instance. So you could get rid both the function and on created, then do this:
create ball
set ball scale to 2
It would work just as well :) But yea, it's not really ideal to my workflow at some times either.