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>
|
<h1 align="center">Kubi</h1>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
Heavily multithreaded voxel engine with multiplayer networking.<br>
|
Voxel engine written in Rust
|
||||||
Written in Rust using <a href="https://crates.io/crates/wgpu">wgpu</a>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<!-- <h2>screenshots</h2> -->
|
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<img src=".readme/screenshot_new.png" width="512">
|
|
||||||
<img src=".readme/game.gif" width="512">
|
<img src=".readme/game.gif" width="512">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
17
flake.nix
17
flake.nix
|
@ -25,7 +25,7 @@
|
||||||
pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv
|
pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv
|
||||||
else
|
else
|
||||||
pkgs.clangStdenv;
|
pkgs.clangStdenv;
|
||||||
} {
|
} rec {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
(fenix.packages.${system}.complete.withComponents [
|
(fenix.packages.${system}.complete.withComponents [
|
||||||
"cargo"
|
"cargo"
|
||||||
|
@ -56,20 +56,7 @@
|
||||||
udev
|
udev
|
||||||
openssl
|
openssl
|
||||||
];
|
];
|
||||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
||||||
libGL
|
|
||||||
glslang
|
|
||||||
vulkan-tools
|
|
||||||
vulkan-headers
|
|
||||||
vulkan-loader
|
|
||||||
wayland
|
|
||||||
xorg.libX11
|
|
||||||
xorg.libXcursor
|
|
||||||
xorg.libXi
|
|
||||||
xorg.libXrandr
|
|
||||||
xorg.libxcb
|
|
||||||
libxkbcommon
|
|
||||||
]);
|
|
||||||
RUSTFLAGS = "-Zthreads=8";
|
RUSTFLAGS = "-Zthreads=8";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue