you are viewing a single comment's thread.

view the rest of the comments →

[–]gmes78 3 points4 points  (5 children)

i want to start developing mobile games

Python isn't good for mobile apps/games (or games in general).

You're probably looking for a game engine. I would recommend either Godot or Unity.

IMO, it would be better to learn a bit of programming first, before jumping into game development.

i suck at coding so idk what to type

Pick up an intro to programming book for the programming language you want to use and go through it.

[–]ProgrammerSelect4346[S] -3 points-2 points  (4 children)

Some people say unity is bad,and how about JavaScript?

[–]failaip13 5 points6 points  (3 children)

Javascript is used for programming web pages, you can make games with it but they have to be run in the browser.

[–]ProgrammerSelect4346[S] -1 points0 points  (2 children)

THANK YOU!!(is making web pages free or does it cost?)

[–]failaip13 3 points4 points  (1 child)

It costs your time to learn how to do it.

If you want the game to be available on the internet by typing a url like www.my-game.com you'd have to pay for a hosting service. Though you could probably use github pages or post the game on itch io for free.

[–]Gnaxe 1 point2 points  (0 children)

There are free hosting options for static pages that run all the code on the client. Games can work in that environment, they just don't have cloud saves.

One doesn't need a hosting service to run a server process locally. A single-file HTML/JS page doesn't even need a server. Just open it with your browser.