Can zim make this also possible (as flutter can)

I find this example : game for kids 'catch the monsters' as zim has also robots and monsters at Odd Robots
and
https://codepen.io/zimjs/pen/vYbOLPy
maybe zim can make this possible?

1 Like

That game definitely seems in the realm of possibility for ZIM.

Thanks for sharing Odd Robots, the amount of time I just spent playing is concerning. I feel like I've developed a bit of roboprejudice. :man_facepalming:

2 Likes

any idea.. should I need also https://zimjs.com/multipong with https://zimjs.com/socket for that?
It is a challange to beat flutter with the simplicity of ZiM .. can you?

For sure... but we have already proven that here

So now... it is up to others to try ;-).

2 Likes

but can you help a little so socket is needed or how would you make it?

It depends perhaps on the controller. ZIM, or really JavaScript, has a GamePad API. It is built in to the MotionController. So we can use game controllers as easily as a mouse:

new MotionController(new Circle.center(), "gamestick");

And the circle will move based on the gamepad.

1 Like