I'm new to construct 2 and I'm barely learning the basics. I'm trying to make a sprite appear in the exact spot that I click on the screen. Is there a way to make the sprite appear or would it be easier to make the sprite move from one spot to wherever I click next?
Develop games in your browser. Powerful, performant & highly capable.
First make sure you have added your mouse object.
Go Event sheet Do this: "Add Event" - "Mouse" - "On any click."
Now, "Add action" - "System" - "Create object" -
choose sprite
x = mouse.x
y = mouse.y
That seems so much simpler now. Thanks!