-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented working minigames (with a few kinks)
- Loading branch information
1 parent
697c287
commit 34d8913
Showing
21 changed files
with
3,327 additions
and
11,944 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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
{ | ||
"search.exclude": { | ||
"export/**/*.*": true | ||
}, | ||
"[haxe]": { | ||
"editor.formatOnSave": true, | ||
"editor.formatOnSaveMode":"modifications", | ||
"editor.formatOnPaste": false, | ||
"editor.codeActionsOnSave": { | ||
"source.sortImports": "explicit" | ||
} | ||
}, | ||
"haxe.enableExtendedIndentation": true, | ||
"lime.targetConfigurations": [ | ||
{ | ||
"label": "HTML5 / Debug", | ||
"target": "html5" | ||
}, | ||
{ | ||
"label": "HTML5 / Debug (-Ddev -Doffline)", | ||
"target": "html5", | ||
"args": ["-debug -Ddev -Doffline -Drandom_username"] | ||
}, | ||
{ | ||
"label": "HTML5 / Debug (-Ddev -Dtest_local)", | ||
"target": "html5", | ||
"args": ["-debug -Ddev -Dtest_local -Drandom_username"] | ||
} | ||
] | ||
"search.exclude": { | ||
"export/**/*.*": true | ||
}, | ||
"[haxe]": { | ||
"editor.formatOnSave": false, | ||
"editor.formatOnSaveMode": "modifications", | ||
"editor.formatOnPaste": false, | ||
"editor.codeActionsOnSave": { | ||
"source.sortImports": "explicit" | ||
} | ||
}, | ||
"haxe.enableExtendedIndentation": true, | ||
"lime.targetConfigurations": [ | ||
{ | ||
"label": "HTML5 / Debug", | ||
"target": "html5" | ||
}, | ||
{ | ||
"label": "HTML5 / Debug (-Ddev -Doffline)", | ||
"target": "html5", | ||
"args": ["-debug -Ddev -Doffline -Drandom_username"] | ||
}, | ||
{ | ||
"label": "HTML5 / Debug (-Ddev -Dtest_local)", | ||
"target": "html5", | ||
"args": ["-debug -Ddev -Dtest_local -Drandom_username"] | ||
} | ||
], | ||
"editor.formatOnSave": false | ||
} |
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
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
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,64 @@ | ||
{ | ||
"minigames": { | ||
"bunnymark": { | ||
"name": "Bunny Mark", | ||
"description": "A benchmark for rendering performance", | ||
"type": "overlay", | ||
"crtShader": false, | ||
"camera": { | ||
"width": 640, | ||
"height": 720, | ||
"zoom": 1.5 | ||
} | ||
}, | ||
"crouton": { | ||
"name": "Crouton", | ||
"description": "For all your crouton needs", | ||
"type": "external", | ||
"external": { | ||
"prompt": "Need a crouton?", | ||
"url": "https://crouton.net/" | ||
} | ||
}, | ||
"tankmas2018": { | ||
"name": "Tankmas 2018", | ||
"description": "The 2018 Newgrounds collaboration!", | ||
"type": "external", | ||
"external": { | ||
"url": "https://www.newgrounds.com/portal/view/721061" | ||
} | ||
}, | ||
"tankmas2019": { | ||
"name": "Tankmas 2019", | ||
"description": "The 2019 Newgrounds collaboration!", | ||
"type": "external", | ||
"external": { | ||
"url": "https://www.newgrounds.com/portal/view/743161" | ||
} | ||
}, | ||
"tankmas2020": { | ||
"name": "Tankmas 2020", | ||
"description": "The 2020 Newgrounds collaboration!", | ||
"type": "external", | ||
"external": { | ||
"url": "https://www.newgrounds.com/portal/view/773236" | ||
} | ||
}, | ||
"tankmas2021": { | ||
"name": "Tankmas 2021", | ||
"description": "The 2021 Newgrounds collaboration!", | ||
"type": "external", | ||
"external": { | ||
"url": "https://www.newgrounds.com/portal/view/824174" | ||
} | ||
}, | ||
"tankmas2022": { | ||
"name": "Tankmas 2022", | ||
"description": "The 2022 Newgrounds collaboration!", | ||
"type": "external", | ||
"external": { | ||
"url": "https://www.newgrounds.com/portal/view/865711" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.