diff --git a/bin/assetc.exe b/bin/assetc.exe deleted file mode 100644 index 96e94dc..0000000 Binary files a/bin/assetc.exe and /dev/null differ diff --git a/bin/glfw3.dll b/bin/glfw3.dll deleted file mode 100644 index 4e709fd..0000000 Binary files a/bin/glfw3.dll and /dev/null differ diff --git a/bin/lua53.dll b/bin/lua53.dll deleted file mode 100644 index 48ed1ca..0000000 Binary files a/bin/lua53.dll and /dev/null differ diff --git a/bin/toolchains/host-windows-x64-target-windows-x64/cmft.exe b/bin/toolchains/host-windows-x64-target-windows-x64/cmft.exe deleted file mode 100644 index fee5295..0000000 Binary files a/bin/toolchains/host-windows-x64-target-windows-x64/cmft.exe and /dev/null differ diff --git a/bin/toolchains/host-windows-x64-target-windows-x64/luac.exe b/bin/toolchains/host-windows-x64-target-windows-x64/luac.exe deleted file mode 100644 index 72ae193..0000000 Binary files a/bin/toolchains/host-windows-x64-target-windows-x64/luac.exe and /dev/null differ diff --git a/bin/toolchains/host-windows-x64-target-windows-x64/recastc.exe b/bin/toolchains/host-windows-x64-target-windows-x64/recastc.exe deleted file mode 100644 index 286862f..0000000 Binary files a/bin/toolchains/host-windows-x64-target-windows-x64/recastc.exe and /dev/null differ diff --git a/bin/toolchains/host-windows-x64-target-windows-x64/shaderc.exe b/bin/toolchains/host-windows-x64-target-windows-x64/shaderc.exe deleted file mode 100644 index 6585d2d..0000000 Binary files a/bin/toolchains/host-windows-x64-target-windows-x64/shaderc.exe and /dev/null differ diff --git a/bin/toolchains/host-windows-x64-target-windows-x64/texconv.exe b/bin/toolchains/host-windows-x64-target-windows-x64/texconv.exe deleted file mode 100644 index 75718a4..0000000 Binary files a/bin/toolchains/host-windows-x64-target-windows-x64/texconv.exe and /dev/null differ diff --git a/bin/toolchains/host-windows-x64-target-windows-x64/texturec.exe b/bin/toolchains/host-windows-x64-target-windows-x64/texturec.exe deleted file mode 100644 index 6a9229e..0000000 Binary files a/bin/toolchains/host-windows-x64-target-windows-x64/texturec.exe and /dev/null differ diff --git a/main.py b/main.py index ccb59ed..0515edb 100644 --- a/main.py +++ b/main.py @@ -7,33 +7,10 @@ from animations import * import subprocess import re -from tqdm import tqdm - - -# Compile assets: - -# execute commande line and show stdout: -def run_command(exe): - def execute_com(command): - p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - return iter(p.stdout.readline, b'') - - t = tqdm(total=100) - percent_prec = 0 - for line in execute_com(exe): - if "Progress" in str(line): - percent = int(re.findall('\d*%', str(line))[0].split("%")[0]) - t.update(percent - percent_prec) - percent_prec = percent - - -print("Compiling assets...") -run_command("bin\\assetc.exe assets assets_compiled -quiet -progress") # Game vars res_x, res_y = 1920, 1080 - class Main: flag_AAA = True flag_start = False