-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Core-Team-META/development
- Loading branch information
Showing
10 changed files
with
1,672 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{*.yml,*.toml,*.md}] | ||
indent_style = spaces | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Core saves .pbt files as LF by default | ||
*.pbt text eol=lf | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
*.pbt text eol=lf -delta linguist-language=Protobuf-Text-Format | ||
*.terrain binary -delta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Versions (please complete the following information):** | ||
|
||
- Core: [e.g. 1.0.800] | ||
- Game Version [e.g. 1.0.1] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install and run Luacheck | ||
uses: nebularg/actions-luacheck@v1 | ||
with: | ||
args: '--no-color -qo "011"' | ||
annotate: warning | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
UserSettings | ||
PublishData | ||
Screenshots | ||
Exports | ||
# Temporary files used when publishing & to store some preview data like persistent storage | ||
# No need to synchronize | ||
Temp/ | ||
|
||
# Local user settings used to store script breakpoints & hierarchy state (locked/hidden objects) | ||
# No need to synchronize | ||
UserSettings/ | ||
|
||
# Screenshots used when publishing & for project thumbnails in the Create tab | ||
# Comment out if you want to synchronize screenshots | ||
#Screenshots/ | ||
|
||
# Directory created when publishing a game, excluding this allows anyone to publish without | ||
# the "You aren't authorized" message | ||
# No need to synchronize | ||
PublishData/ | ||
|
||
# Folder created when you export templates from a game project | ||
# No need to synchronize | ||
Exports/ | ||
|
||
# Directory created when migrating from an old storage format | ||
# No need to synchronize | ||
.core_backup/ |
Oops, something went wrong.