Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

is mobile supported?

Yep, you can use it on mobile. Did you encounter any problems?

no problems. i see the touch works perfect. but i can't see any multitouch in the demo.

multitouch is not supported YET

(1 edit)

okey. i'll be waiting for multitouch function. love your game engine! 👍

parent.addEventListener('touchmove', function(event) {    
    
    // finger 1
    let x1 = event.touches[0].clientX;
    let y1 = event.touches[0].clientY;
    
    // second finger
    let x2 = event.touches[1].clientX;
    let y2 = event.touches[1].clientY;
});

added multitouch support in the latest version :)

(+1)

great 👍

thanks for taking me into account