mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 19:28:49 -04:00

* Remove unused `directionalLight` uniform * Add glslang libraries * Update to the new Cubyz-libs version * Dehardcode OS-dependent library file name stuff * Audio somehow crashes on close, not sure why but I assume it's probably because of the library being compiled with a new zig version. * Remove irrelevant uniforms from Window uniform list * Remove unused itemdrop uniform * Implement SPIR-V compilation code, the actual output is discarded * Improve linking shader errors by passing a file path * Fix formatting
48 lines
1.8 KiB
Zig
48 lines
1.8 KiB
Zig
.{
|
|
.name = .Cubyzig,
|
|
.fingerprint = 0x782a2e402c0ee887,
|
|
.version = "0.0.0",
|
|
.paths = .{""},
|
|
.dependencies = .{
|
|
.local = .{
|
|
.path = "../Cubyz-libs/zig-out", // Local alternative to the cubyz_deps below
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_headers = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_headers.tar.gz",
|
|
.hash = "N-V-__8AADG8MwD98GEQXXNawTiaQfCUrV7vK4ldKsWhfwvI",
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_aarch64_macos = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_aarch64-macos-none.tar.gz",
|
|
.hash = "N-V-__8AANwbIwJ6ad1lQFbXKAwT6VwXJY4oLyjZwOfz4LUx",
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_aarch64_linux = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_aarch64-linux-musl.tar.gz",
|
|
.hash = "N-V-__8AAG6FdQLSQL-LHeF5o7k3vRCnIdl0n2I0R0UO18K-",
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_aarch64_windows = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_aarch64-windows-gnu.tar.gz",
|
|
.hash = "N-V-__8AANCHkQIGwA8SWUxMHaxnVnkTwBO0yei3HwBLOd2T",
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_x86_64_macos = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_x86_64-macos-none.tar.gz",
|
|
.hash = "N-V-__8AAIh5HAKP8i_TwkyD-6H_EL31J6Ereu9Kdx83J7Ks",
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_x86_64_linux = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_x86_64-linux-musl.tar.gz",
|
|
.hash = "N-V-__8AAAy-cwLTBDz5YQSt3h-PdE4Cm-NDI9RGnrAz_onE",
|
|
.lazy = true,
|
|
},
|
|
.cubyz_deps_x86_64_windows = .{
|
|
.url = "https://github.com/PixelGuys/Cubyz-Libs/releases/download/4/cubyz_deps_x86_64-windows-gnu.tar.gz",
|
|
.hash = "N-V-__8AAMzGtQKYP6AdoTC84UjbvypxwtagkWBMqrPc8Uhx",
|
|
.lazy = true,
|
|
},
|
|
},
|
|
}
|