My first Phaser 3 game (yey! :D)
Yes, this is my first game in Phaser 3. A basic platformer where you collect ores. At first, this was going to be a story-based game. You got the ores for your greedy friend, and there was a 'y/n' dialog system where you could control whether you gave the ores to your friend or not...which I couldn't get to work bc i suck ;-;
If you want to build the game from source, follow these steps.
You're going to want to make sure you have these installed:
First, open Git and run this
git clone https://github.com/PurpleP-Ink/in-the-dark.git
this command will get this repository and put it onto your computer.
Now, navigate into the repository by using this command: cd in-the-dark
and run this command:
npm install
this command will install all the modules this game needs to work.
After you've done all of that, run this command.
npm start build
You should get an output like this:
> [email protected] start
> parcel index.html --open build
Server running at http://localhost:1234
✨ Built in 6.45s
A folder called 'dist' will be created, which contains the built game.
You can then play the game by going to http://localhost:1234 (the webserver Parcel created) or put the generated 'dist' folder in a web server which you can make with this VSCode extension
or if you don't use VSCode, create one with Python