implement custom chunk meshes, models and shaders.

This commit is contained in:
catangent 2025-04-14 20:29:41 +01:00
parent e4d536bc87
commit e805891885
7 changed files with 800 additions and 57 deletions

View file

@ -25,6 +25,8 @@ pub fn build(b: *std.Build) void {
exe.linkLibrary(rl.artifact("raylib"));
exe.root_module.addImport("znoise", znoise.module("root"));
exe.root_module.addIncludePath(b.path("raylib/src"));
exe.root_module.addIncludePath(b.path("src/c"));
exe.linkLibrary(znoise.artifact("FastNoiseLite"));
b.installArtifact(exe);