mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-23 15:28:44 -06:00
Compare commits
2 commits
8a541e54a4
...
7a375cf3c0
Author | SHA1 | Date | |
---|---|---|---|
griffi-gh | 7a375cf3c0 | ||
griffi-gh | ced9705910 |
BIN
.readme/screenshot_new.png
Normal file
BIN
.readme/screenshot_new.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 MiB |
|
@ -1,8 +1,13 @@
|
||||||
<h1 align="center">Kubi</h1>
|
<h1 align="center">Kubi</h1>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
Voxel engine written in Rust
|
Heavily multithreaded voxel engine with multiplayer networking.<br>
|
||||||
|
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,7 +56,20 @@
|
||||||
udev
|
udev
|
||||||
openssl
|
openssl
|
||||||
];
|
];
|
||||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
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
|
||||||
|
]);
|
||||||
RUSTFLAGS = "-Zthreads=8";
|
RUSTFLAGS = "-Zthreads=8";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue