Game made in TS with custom made game engine that's being developed at the same as the game and will be relased as separate game engine in future.
Note: This is continuation of mobilex1122/TS-Game
ported to Vite for better and faster loading/building.
-
Go to releases and find online version link
-
Alternatively go to
https://mobilex1122.eu/games/ts-game-vite/<relase tag>/
Example for tag b2:
https://mobilex1122.eu/games/ts-game-vite/b2/
- Go to releases and download
Game.zip
- Extract
Game.zip
in new folder - Run any html server inside that folder. Recomended (and easy) html servers:
- VS Code Live server:
- Open extracted folder in VS Code
- Install Live Server
- Run Live Server (Go Love button in bottom right panel)
- Python http server
- Install python
- Open extracted folder in terminal (Or navigate to it)
- Run
python -m http.server
- VS Code Live server:
- Open server adress in web browser (
http://localhost:<port>
)
- Install node.js
- Run
npm install
inside project folder - Run
npm run dev
to run live server or runnpm run build
to make static version.
- Collisions
- Object Management
- Render Distance (Don't render things that are not on screen)
- Sound
- Animated character
- Bigger resolution (right now 500x500)
- Textures
- Map limited to chunks (all chunks are rendered at the same time)
- Tileset limited to 16x16 (Hardcoded)
- Chunks limited to 16x16 (Hardcoded)