Play - Penguin Delivery Service
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.
PDS is being built in Unity Version 5.6.0f3.
There is a tutorial on how to use Github for those who are interested.
There are several tutorials on Unity for those who are interested.
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.
- Have git installed on your computer.
- Open your chosen command line or git client.
- Use the command
cd "Folder name"
to move to your chosen directory. - When in your chosen folder, use
git clone https://github.com/FullertonVGDC/PenguinDeliveryService.git
to clone the repository. - Move into the new PenguinDeliveryService folder and create a new branch to keep the master branch clean.
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"
If there are any questions, feel free to post in the Programming channel on Discord and a programming lead will help you.