🤖 🚀 A 3D WebGL interactive game using TypeScript and NodeJS.
Few lines describing your project.
A 3D space game. Travelling along the space trying to avoid rocks and obstacles. The ship can avoid the rocks by moving right, or left. Collision with the rocks affects its health by decreasing total health by ONE and every second with no collision with the rock your score increase by ONE.
- Install Node.js and Visual Studio Code.
- Open the folder in Visual Studio Code.
- Open a terminal (Terminal > New Terminal).
- run
npm install
. If it failed for any reason, try again. - run
npm run watch
. - Ctrl + click the link shown in the terminal (usually it will be http://localhost:1234).
Note: you can use yarn to enable caching so that you don't download all the packages with project. You can download yarn from yarnpkg.com. Then replace npm install
with yarn install
and npm run watch
with yarn watch
.