File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
8
8
jobs :
9
- build :
9
+ build-deltarune :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
23
23
STEAM_USERNAME : ${{ secrets.STEAM_USERNAME }}
24
24
- name : Extract Deltarune's code
25
25
run : |
26
- ./utmtcli/UndertaleModCli load game/data.win --scripts 'utmt/UndertaleModTool/Scripts/Resource Unpackers/ExportAllCode .csx'
26
+ ./utmtcli/UndertaleModCli load game/data.win --scripts 'scripts/ExportCodeFormatted .csx'
27
27
mv game/Export_Code decompiled-deltarune
28
28
- name : Build
29
29
run : ./build.sh deltarune
Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
8
8
jobs :
9
- build :
9
+ build-undertale :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
23
23
STEAM_USERNAME : ${{ secrets.STEAM_USERNAME }}
24
24
- name : Extract Undertale's code
25
25
run : |
26
- ./utmtcli/UndertaleModCli load game/assets/game.unx --scripts 'utmt/UndertaleModTool/Scripts/Resource Unpackers/ExportAllCode .csx'
26
+ ./utmtcli/UndertaleModCli load game/assets/game.unx --scripts 'scripts/ExportCodeFormatted .csx'
27
27
mv game/assets/Export_Code decompiled-undertale
28
28
- name : Build
29
29
run : ./build.sh undertale
Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
8
8
jobs :
9
- build :
9
+ build-undertaleyellow :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
19
19
unzip -p game.zip "Undertale Yellow v1_1/data.win" > data.win
20
20
- name : Extract Undertale Yellow's code
21
21
run : |
22
- ./utmtcli/UndertaleModCli load data.win --scripts 'utmt/UndertaleModTool/Scripts/Resource Unpackers/ExportAllCode .csx'
22
+ ./utmtcli/UndertaleModCli load data.win --scripts 'scripts/ExportCodeFormatted .csx'
23
23
mv Export_Code decompiled-undertaleyellow
24
24
- name : Build
25
25
run : ./build.sh undertaleyellow
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ EnsureDataLoaded ( ) ;
3
+
4
+ Underanalyzer . Decompiler . DecompileSettings decompSettings = Data . ToolInfo . DecompilerSettings ;
5
+ decompSettings . RemoveSingleLineBlockBraces = true ;
6
+ decompSettings . OpenBlockBraceOnSameLine = false ;
7
+ decompSettings . EmptyLineAroundBranchStatements = false ;
8
+
9
+ #load "../utmt/UndertaleModTool/Scripts/Resource Unpackers/ExportAllCode.csx"
You can’t perform that action at this time.
0 commit comments