Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
with:
path: |
.haxelib/
export/release/linux/haxe/
export/release/linux/obj/
build/release/linux/haxe/
build/release/linux/obj/
key: cache-linux-build
# Runs a set of commands using the runners shell
- name: Install Haxelib
Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:
with:
path: |
.haxelib/
export/release/linux/haxe/
export/release/linux/obj/
build/release/linux/haxe/
build/release/linux/obj/
key: cache-linux-build
- name: Publish Artifact
uses: actions/upload-artifact@main
with:
name: linuxBuild
path: export/release/linux/bin
path: build/release/linux/bin

buildWindows:
runs-on: windows-latest
Expand All @@ -121,8 +121,8 @@ jobs:
with:
path: |
.haxelib/
export/release/windows/haxe/
export/release/windows/obj/
build/release/windows/haxe/
build/release/windows/obj/
key: cache-windows-build
# Runs a set of commands using the runners shell
- name: Install Haxelib
Expand Down Expand Up @@ -175,14 +175,14 @@ jobs:
with:
path: |
.haxelib/
export/release/windows/haxe/
export/release/windows/obj/
build/release/windows/haxe/
build/release/windows/obj/
key: cache-windows-build
- name: Publish Artifact
uses: actions/upload-artifact@main
with:
name: windowsBuild
path: export/release/windows/bin
path: build/release/windows/bin
buildMacIntel:
runs-on: macos-15

Expand All @@ -199,8 +199,8 @@ jobs:
with:
path: |
.haxelib/
export/release/macos/haxe/
export/release/macos/obj/
build/release/macos/haxe/
build/release/macos/obj/
key: cache-macos-build
# Runs a set of commands using the runners shell
- name: Install Haxelib
Expand Down Expand Up @@ -253,14 +253,14 @@ jobs:
with:
path: |
.haxelib/
export/release/macos/haxe/
export/release/macos/obj/
build/release/macos/haxe/
build/release/macos/obj/
key: cache-macosintel-build
- name: Publish Artifact
uses: actions/upload-artifact@main
with:
name: macBuild-intel
path: export/release/macos/bin
path: build/release/macos/bin

buildMacArm:
runs-on: macos-15
Expand All @@ -278,8 +278,8 @@ jobs:
with:
path: |
.haxelib/
export/release/macos/haxe/
export/release/macos/obj/
build/release/macos/haxe/
build/release/macos/obj/
key: cache-macos-build
# Runs a set of commands using the runners shell
- name: Install Haxelib
Expand Down Expand Up @@ -332,11 +332,11 @@ jobs:
with:
path: |
.haxelib/
export/release/macos/haxe/
export/release/macos/obj/
build/release/macos/haxe/
build/release/macos/obj/
key: cache-macosarm-build
- name: Publish Artifact
uses: actions/upload-artifact@main
with:
name: macBuild-arm
path: export/release/macos/bin
path: build/release/macos/bin
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ art/build_x64-officialrelease.bat
art/test_x64-debug-officialrelease.bat

### VS Code
build/*
export/*
.vscode/*
.haxelib/
Expand All @@ -20,4 +21,4 @@ export/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/extensions.json
Binary file added art/preloaderArt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added art/touchHereToPlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
7 changes: 6 additions & 1 deletion hmm.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "git",
"dir": null,
"ref": null,
"url": "https://github.com/th2l-devs/openfl"
"url": "https://github.com/JS-Engine-things/openfl"
},
{
"name": "flixel",
Expand All @@ -36,6 +36,11 @@
"type": "haxelib",
"version": "2.6.0"
},
{
"name": "hxp",
"type": "haxelib",
"version": null
},
{
"name": "hxcpp",
"type": "git",
Expand Down
42 changes: 28 additions & 14 deletions hxformat.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
{
"lineEnds": {
"leftCurly": "both",
"rightCurly": "both",
"emptyCurly": "break",
"objectLiteralCurly": {
"leftCurly": "after"
}
},
"sameLine": {
"ifElse": "next",
"doWhile": "next",
"tryBody": "next",
"tryCatch": "next"
}
"disableFormatting": false,

"indentation": {
"character": " ",
"tabWidth": 2,
"indentCaseLabels": true
},
"lineEnds": {
"anonFunctionCurly": {
"emptyCurly": "break",
"leftCurly": "after",
"rightCurly": "both"
},
"leftCurly": "both",
"rightCurly": "both"
},

"sameLine": {
"ifBody": "same",
"ifElse": "same",
"doWhile": "next",
"tryBody": "next",
"tryCatch": "next"
},

"whitespace": {
"switchPolicy": "around"
}
}
Loading