Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Always solving all my troubles.

Thanks!! ^^

Might not've figured it out right. But, I'm trying to move a group of pictures at once with 'move picture' command, it seems I can only set a new x/y for all the images together. I would like to instead add/sub to their original x/y values.

Unless there's possibly another way to do it that'll cut down from having to do 100+ move picture commands, it's apart of my picture menus. Thanks in advance.

(+1)

Hi there!

On that case, is best if you use a script call:

const pictureIds = [1, 2, 3, 4]
for(const id of pictureIds){
    const picture = $gameScreen.picture(id)

    if(picture){
        picture._x += value
        picture._y += value
    }
}

Inside the brackets on the first line, you can put every picture ID you want

(+1)

Ooooh, I was wondering how to do something like this and couldn't find any reliable info. Thanks a lot.