2018-04-07 15:41:46 +00:00
|
|
|
# Godot3 Template Project
|
2017-12-30 23:42:13 +00:00
|
|
|
|
2018-04-09 23:40:43 +00:00
|
|
|
A series of folders and files that I use when starting a Godot3-based project.
|
2017-12-30 23:42:13 +00:00
|
|
|
|
|
|
|
The `game` folder should have the engine.cfg and any rendered assets, scenes, etc.
|
|
|
|
|
|
|
|
Use the top-level `assets` folder for storing asset sources (eg. gimp .xcf), etc. that are
|
|
|
|
required.
|
|
|
|
|
|
|
|
# Using the template
|
|
|
|
|
2018-04-09 23:40:43 +00:00
|
|
|
1. Get a copy and remove existing history:
|
|
|
|
|
|
|
|
`
|
|
|
|
export PROJECT_NAME=project
|
|
|
|
git clone --recursive https://gitlab.com/kienan/godot3-project-template.git $PROJECT_NAME
|
|
|
|
cd $PROJECT_NAME
|
|
|
|
rm -rf .git ; git init .
|
|
|
|
`
|
|
|
|
|
|
|
|
2. Modify as needed.
|
2017-12-30 23:42:13 +00:00
|
|
|
|
|
|
|
# Copyright and license
|
|
|
|
|
2018-04-07 15:41:46 +00:00
|
|
|
Copyright 2017-2018 Kienan Stewart
|
2017-12-30 23:42:13 +00:00
|
|
|
|
|
|
|
See full copyright and license information the COPYRIGHT file.
|