• Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

 changing the origin of multple obejects at once

xDGameStudios

GameMaker Staff
GameMaker Dev.
Please allow us to be able to change the origin point of multiple objects at once :)
you kind of can do this already:

Code:
with(obj_parent_of_all_the_object_to_be_updated) {
    x += 10;
    y += 9;
}
as the visual change only occurs during the draw event, all objects will change at the same time.
 
Top