Fixed entity positioning
Some checks failed
Build Dusk / build-linux (push) Failing after 57s
Build Dusk / build-psp (push) Has been cancelled

This commit is contained in:
2025-11-25 08:21:56 -06:00
parent 01cbfaae95
commit f9a64b8d54
6 changed files with 19 additions and 1050 deletions

View File

@@ -9,8 +9,6 @@ class Entity:
self.localY = localY % CHUNK_HEIGHT
self.localZ = localZ % CHUNK_DEPTH
print(f"Raw localX: {localX}, adjusted localX: {self.localX}")
self.chunk = chunk
self.vertexBuffer = VertexBuffer()
pass