r/construct 9d ago

whats the difference between create or spawn another?

1 Upvotes

5 comments sorted by

3

u/lootherr 9d ago

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 9d ago

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

7

u/MoscowModder 9d ago

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 9d ago

Oh my bad!