diff options
| author | 2026-04-02 21:16:55 -0400 | |
|---|---|---|
| committer | 2026-04-02 21:58:31 -0400 | |
| commit | 9bebe7aa2ea80df948338e8b8cee256f7b6454d9 (patch) | |
| tree | ab2df8cc6f6978c8edfc2786f0ffcd1de85502f2 /Scripts | |
| parent | c95b23e637fa1545a3ab2de0ec9b73d67332b4ad (diff) | |
| download | NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.tar.gz NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.tar.bz2 NewCamera-9bebe7aa2ea80df948338e8b8cee256f7b6454d9.zip | |
Gut graphics stuff, misc additions
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'Scripts')
| -rwxr-xr-x | Scripts/zip_from_gamedir.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Scripts/zip_from_gamedir.sh b/Scripts/zip_from_gamedir.sh new file mode 100755 index 0000000..ca37151 --- /dev/null +++ b/Scripts/zip_from_gamedir.sh @@ -0,0 +1,19 @@ +#! /usr/bin/env sh + +7z a -tzip "NewCamera_$1_incl_spl_linux.zip" \ + msvcrt.dll \ + nativePC/plugins/CSharp/Loader/Default.bin \ + nativePC/plugins/CSharp/Loader/SharpPluginLoader.Bootstrapper.dll \ + nativePC/plugins/CSharp/Loader/SharpPluginLoader.Core.dll \ + nativePC/plugins/CSharp/Loader/SharpPluginLoader.runtimeconfig.json \ + nativePC/plugins/CSharp/NewCamera.dll \ + nativePC/plugins/CSharp/NewCamera.json \ + nativePC/plugins/CSharp/Shaders/body_skin.shdr \ + nativePC/plugins/CSharp/Shaders/cube_only.shdr \ + nativePC/plugins/CSharp/Shaders/face.shdr \ + nativePC/plugins/CSharp/Shaders/fxaa_max_quality.hlsl \ + nativePC/plugins/CSharp/Shaders/sslr.shdr \ + nativePC/plugins/CSharp/Shaders/volume_upsample.shdr \ + nativePC/plugins/CSharp/Shaders/volume_upsample2.shdr \ + nativePC/plugins/CSharp/WorldTuningTool.dll \ + nativePC/plugins/CSharp/WorldTuningTool.json |