mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-23 23:38:42 -06:00
Compare commits
No commits in common. "7a375cf3c0c3622426c9338e53948937e37b0808" and "8a541e54a4c080ac005963b0650955c192ba25dc" have entirely different histories.
7a375cf3c0
...
8a541e54a4
Binary file not shown.
Before Width: | Height: | Size: 3.2 MiB |
|
@ -1,13 +1,8 @@
|
|||
<h1 align="center">Kubi</h1>
|
||||
<p align="center">
|
||||
Heavily multithreaded voxel engine with multiplayer networking.<br>
|
||||
Written in Rust using <a href="https://crates.io/crates/wgpu">wgpu</a>
|
||||
Voxel engine written in Rust
|
||||
</p>
|
||||
|
||||
<!-- <h2>screenshots</h2> -->
|
||||
|
||||
<div align="center">
|
||||
<img src=".readme/screenshot_new.png" width="512">
|
||||
<img src=".readme/game.gif" width="512">
|
||||
</div>
|
||||
|
||||
|
|
17
flake.nix
17
flake.nix
|
@ -25,7 +25,7 @@
|
|||
pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv
|
||||
else
|
||||
pkgs.clangStdenv;
|
||||
} {
|
||||
} rec {
|
||||
packages = with pkgs; [
|
||||
(fenix.packages.${system}.complete.withComponents [
|
||||
"cargo"
|
||||
|
@ -56,20 +56,7 @@
|
|||
udev
|
||||
openssl
|
||||
];
|
||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
|
||||
libGL
|
||||
glslang
|
||||
vulkan-tools
|
||||
vulkan-headers
|
||||
vulkan-loader
|
||||
wayland
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.libXi
|
||||
xorg.libXrandr
|
||||
xorg.libxcb
|
||||
libxkbcommon
|
||||
]);
|
||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
||||
RUSTFLAGS = "-Zthreads=8";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue