Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+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.