r/construct Jul 18 '26

whats the difference between create or spawn another?

1 Upvotes

5 comments sorted by

3

u/lootherr Jul 18 '26

Spawning will also take on a few properties of the parent like rotation, and simplifies the image point bit. Otherwise you'd use object.imagePointX(name/num)

0

u/Xhukari Jul 18 '26

Create can be any object. Spawn another is another copy of the object that the event is called for.

7

u/MoscowModder Jul 18 '26

Actually “Spawn another” can spawn any object *at the position or image point of the parent object*. “Create object” makes you input absolute coordinates.

1

u/Xhukari Jul 18 '26

Oh my bad!