]> git.localhorst.tv Git - blank.git/blobdiff - src/world/Entity.hpp
show camera position in debug overlay
[blank.git] / src / world / Entity.hpp
index 7c96f4f3408d2c346c3c638f10ff83bb19f53213..05d795f38af6e67e0b0ac2b2633628efc58f2496 100644 (file)
@@ -4,7 +4,7 @@
 #include "Block.hpp"
 #include "Chunk.hpp"
 #include "../model/geometry.hpp"
-#include "../model/Model.hpp"
+#include "../model/EntityModel.hpp"
 
 #include <string>
 #include <glm/glm.hpp>
@@ -43,6 +43,10 @@ public:
 
        const Chunk::Pos ChunkCoords() const noexcept { return chunk; }
 
+       glm::vec3 AbsolutePosition() const noexcept {
+               return glm::vec3(chunk * Chunk::Extent()) + position;
+       }
+
        const glm::quat &AngularVelocity() const noexcept { return angular_velocity; }
        void AngularVelocity(const glm::quat &) noexcept;
 
@@ -59,7 +63,7 @@ public:
 
 private:
        const Shape *shape;
-       Model model;
+       EntityModel model;
 
        std::string name;