Skip to content
Hardly Difficult edited this page Sep 27, 2017 · 40 revisions

All contributions must be Free For Commercial Use. Please include a license with each of your submissions. If everything is original and made by you, I suggest using the MIT license below copied below. If anything from a third party is included, please state the source of each asset used with link so we can track and confirm the license.

Please don't submit anything made with student licenses, trial software (or pirated copies of course).

If you have questions, ask in chat or on Discord!

How-to GIT video: https://www.dropbox.com/s/ducmblu3kj3b9x9/2017-04-26_23-18-26.mp4?dl=0

All submissions must be made to GitHub: https://github.com/hardlydifficult/factory

  • Click 'Fork'. This creates an area you have permissions for (e.g. https://github.com/your-name-here/submissions)
  • Click 'Create new File' and create [your twitch name]/Credits.txt. Include the details (e.g. name/website) that you would want in the credits screen.
  • Click 'Upload files' (or use a GIT client). Please organize in folders, etc as appropriate. Commit directly to the master branch (the default).
  • Upload a license for the content you submit under your folder.
  • Once ready (either content or updated content), click "New Pull Request". In the comments describe what changed (if art, maybe include a screenshot). Please also reference the license again (e.g. "content included in the submission is available under the MIT license, see license.txt")

Checkout just your folder into Unity

This works after you have created a folder for your submissions (see above).

  • Create a Unity project
  • Under Assets, create a folder [Username]
  • In cmd prompt, under the [Username] folder:
git init
git remote add origin https://github.com/hardlydifficult/Submissions.git
git fetch origin
git checkout origin/master -- [Username]

Template:

Copyright (c) (year) (copyright holders)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Clone this wiki locally