-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
##GET SET UP! ####Follow this guide to get the project up and running. ####If you are already set up and need help with something, check out the documentation pages (UNDER CONSTRUCTION)
###Quick Start Guide
- Install Unity Beta r18 and Git (git is optional).
- While Unity is installing, create a new Unity Cloud profile and email one of us to get access to the Cloud Build Team.
- Open Unity and log in to your account. There should be an "on the disk" section. Click that, then click on Bumrush.
- Save Bumrush to a folder of your choice.
- Open the project.
- Happy editing!
###Committing your changes #####After making some changes, you probably want to upload it so others can see. Here's how.
Unity Collaborate
This is really simple: when you open Bumrush, there should be a "Collab" tab on the top right. Click on this and you can see recent updates that you don't yet have on your system. Just press update if there are pending changes.
Now, make some changes. When you click on Collab again, there should be a text box where you can write a commit message. Please make this message concise and meaningful! Once you click "Publish Now", your work should automatically be uploaded and sent to everyone else working on the project.
Git
This is only necessary for the people working with Git. Please ignore if you aren't specifically looking for this section.
- Open cmd/terminal and cd into the project folder (unity-game)
- Run git add .
- Run git commit -m"INSERT_VERY_BRIEF_DESCRIPTION HERE" -m"THIS_IS_OPTIONAL_BUT_IF_YOU_WANT_TO_PUT_A_LONG_DESCRIPTION_PUT_IT_HERE_AND_NOT_IN_THE_SHORT_DESCRIPTION"
- If cmd/terminal tells you to set your username/email, follow the instructions on screen and try this again.
- Run git push
- Type in your username and password if prompted.
- Check on your branch site to see your new changes!