diff --git a/art/Exporter.py b/art/Exporter.py index da8ab3e..78b69ef 100644 --- a/art/Exporter.py +++ b/art/Exporter.py @@ -28,7 +28,6 @@ def write_u64(f, number: int): def write_string(f, s: str): encoded = s.encode("utf8") write_u64(f, len(encoded)) - print(f"Writing string '{s}' of length {len(encoded)}") f.write(encoded) diff --git a/art/art.blend b/art/art.blend index 1d42107..ce19128 100644 --- a/art/art.blend +++ b/art/art.blend @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea3d745be241a2ae6ff8cb3f26a43000d7edcaa6914091ce3f36737e020c28e1 -size 1179416 +oid sha256:ec2771f05b0921711069a88e001245c57066a50451b5ece0440030078b5f93fe +size 7546680 diff --git a/art/gigatexture.png b/art/gigatexture.png index c1c7afd..01bc3c8 100644 --- a/art/gigatexture.png +++ b/art/gigatexture.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ab2a95e3724e85b10328e92bc6afaaa255d4644d2d59a20e949063e71421ed9 -size 3373206 +oid sha256:38741ec7f0f85599698754888b5f19b3950922b88de955a521ff5e50a4479c11 +size 3386370 diff --git a/main.c b/main.c index af15bf2..b66fa16 100644 --- a/main.c +++ b/main.c @@ -4378,13 +4378,13 @@ void frame(void) draw_placed(view, projection, cur); } - draw_placed(view, projection, &(PlacedMesh){.draw_with = &mesh_player, .t = (Transform){.offset = AddV3(plane_point(gs.player->pos), V3(0,1,0)), .rotation = Make_Q(0, 0, 0, 1), .scale = V3(1, 1, 1)}, }); + draw_placed(view, projection, &(PlacedMesh){.draw_with = &mesh_player, .t = (Transform){.offset = AddV3(plane_point(gs.player->pos), V3(0,0,0)), .rotation = Make_Q(0, 0, 0, 1), .scale = V3(1, 1, 1)}, }); ENTITIES_ITER(gs.entities) { if(it->is_npc) { - draw_placed(view, projection, &(PlacedMesh){.draw_with = &mesh_player, .t = (Transform){.offset = AddV3(plane_point(it->pos), V3(0,1,0)), .rotation = Make_Q(0, 0, 0, 1), .scale = V3(1, 1, 1)}, }); + draw_placed(view, projection, &(PlacedMesh){.draw_with = &mesh_player, .t = (Transform){.offset = AddV3(plane_point(it->pos), V3(0,0,0)), .rotation = Make_Q(0, 0, 0, 1), .scale = V3(1, 1, 1)}, }); } }