Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+3)

Hi!! i'm making a dolls house style game using these contraptions (the sticker ones) as 'objects' and i'd like to be able to share it with my friends who all would primarily use mobile devices to play, however due to the touch input if you 'pick up' a sticker and move it horizontally it automatically flips to the next card in the deck. i'm just wondering whether there's a way to turn off the auto flip if that makes sense?

(+1)

Swipes that move between cards generate navigate[] events, just like pressing the left or right arrow keys. You can override the default behavior by defining an empty handler for the navigate[] event on the card- or deck-level script, like so:

on navigate do
 
end

Does that solve your problem?

(+1)

thank you so much, it works!!!! :))