/PenguinDeliveryService

2D platformer of Pegu who delivers mail

Primary LanguageC#

Play the Game

Play - Penguin Delivery Service

Rules of Conduct

Please be sure to read the Rules.PDF file to understand how the board expects all of our members to conduct themselves. Failure to abide by these rules may result in the board revoking your access to this GitHub Project and termination of club membership.

PenguinDeliveryService

About Penguin Delivery Service

PDS is being built in Unity Version 5.6.0f3.

Github Tutorial

There is a tutorial on how to use Github for those who are interested.

Unity Tutorials

There are several tutorials on Unity for those who are interested.

Notice

When working on PDS, please do not change anything in the master branch. Create a new branch and add your changes to the new branch. Notify the Programming channel on Discord and a programming lead will check and merge your work into the master branch as necessary.
Art should be put into the Google Drive, which will then be put into the assets folder by a programming lead.

How to clone this repository

  1. Have git installed on your computer.
  2. Open your chosen command line or git client.
  3. Use the command cd "Folder name" to move to your chosen directory.
  4. When in your chosen folder, use git clone https://github.com/FullertonVGDC/PenguinDeliveryService.git to clone the repository.
  5. Move into the new PenguinDeliveryService folder and create a new branch to keep the master branch clean.

Short guide to git branch

Create a new branch and switch to that branch

git branch "branch name"
git checkout "branch name"

Make some changes to the file and commit the changes

git commit -m “message”

Switch back to the master branch

git checkout master

Merge the "branch" to the master branch

git merge "branch name"

Delete unused branch

git branch -d "branch name"

Questions?

If there are any questions, feel free to post in the Programming channel on Discord and a programming lead will help you.