From: SmallJoker Date: Mon, 9 Apr 2018 12:58:35 +0000 (+0200) Subject: upright_sprite: Fix texture position for players Fixes #6471 X-Git-Tag: 0.4.17~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=875972ffa6cfbf4621bc71f11f4f30ee2ae47851;p=oweals%2Fminetest.git upright_sprite: Fix texture position for players Fixes #6471 --- diff --git a/src/content_cao.cpp b/src/content_cao.cpp index 994f0492a..994ff5bb5 100644 --- a/src/content_cao.cpp +++ b/src/content_cao.cpp @@ -835,6 +835,11 @@ void GenericCAO::addToScene(scene::ISceneManager *smgr, video::S3DVertex( dx, dy, 0, 0,0,0, c, 0,0), video::S3DVertex(-dx, dy, 0, 0,0,0, c, 1,0), }; + if (m_is_player) { + // Move minimal Y position to 0 (feet position) + for (video::S3DVertex &vertex : vertices) + vertex.Pos.Y += dy; + } u16 indices[] = {0,1,2,2,3,0}; buf->append(vertices, 4, indices, 6); // Set material @@ -854,6 +859,11 @@ void GenericCAO::addToScene(scene::ISceneManager *smgr, video::S3DVertex(-dx, dy, 0, 0,0,0, c, 0,0), video::S3DVertex( dx, dy, 0, 0,0,0, c, 1,0), }; + if (m_is_player) { + // Move minimal Y position to 0 (feet position) + for (video::S3DVertex &vertex : vertices) + vertex.Pos.Y += dy; + } u16 indices[] = {0,1,2,2,3,0}; buf->append(vertices, 4, indices, 6); // Set material