Is it possible to set the origin point of one sprite to the position of a second sprite through events?
The origin point is what's used to set the position of a sprite so this is what happens normally when you use Set Position.
You can reference the x and y of image points, but as far as I know you cant set them in the event sheet.
If you want to do it without moving the original sprite, I don't think its possible.
But if you move the sprite with it, just use set position to
x=secondsprite.x
y=secondsprite.y
Develop games in your browser. Powerful, performant & highly capable.
Thanks for all the responses. And thank you for the work around tip, Ben. I set the angle from the first sprite to the second and it works fine for what I need.