Hi,
how to get the uid of the last created object?
e.g.
I create an object (instance) on touch start. Then I want to address this instance (uid) to set variable values, or scale etc. But HOW?
pseudo-code:
Create Object at and return uid: obj_ball, touch.x, touch.y, var_obj // uid of created obj
with(var_obj) set variable value: new = 1
or:
create object at: obj_ball, touch.x, touch.y
with(last_created_obj) set variable value: new = 1
etc.