Initial commit

This commit is contained in:
Kienan Stewart 2017-12-30 18:42:13 -05:00
commit c491d74fc4
8 changed files with 40 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

16
COPYRIGHT Normal file
View File

@ -0,0 +1,16 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Godot 2 Template Project
Upstream-Contact: Kienan Stewart <kienan.stewart@burntworld.ca>
Source: @TODO@
Files: *
Comment: Godot 2 Template Project
Copyright: 2017, Kienan Stewart
License: Expat
License: Expat
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.

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
GODOT=godot2-server
clean:
rm -rf build/

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# Godot2 Template Project
A series of folders and files that I use when starting a Godot2-based project.
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
The copy the entire folder and modify as needed. The engine.cfg for the godot project
should be placed into the root of the game/ folder.
# Copyright and license
Copyright 2017 Kienan Stewart
See full copyright and license information the COPYRIGHT file.

View File

0
assets/release/.gitkeep Normal file
View File

0
assets/ui/icons/.gitkeep Normal file
View File

0
game/.gitkeep Normal file
View File