Skip to content

Commit 815876e

Browse files
committedDec 18, 2014
Fix visual_scale for NDT_PLANTLIKE being set too small
1 parent f5211bb commit 815876e

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed
 

‎src/content_mapblock.cpp

+10-8
Original file line numberDiff line numberDiff line change
@@ -1162,15 +1162,16 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
11621162
u16 l = getInteriorLight(n, 1, nodedef);
11631163
video::SColor c = MapBlock_LightColor(255, l, f.light_source);
11641164

1165-
float s = BS / 2;
1166-
for(u32 j = 0; j < 2; j++)
1165+
float s = BS / 2 * f.visual_scale;
1166+
1167+
for (int j = 0; j < 2; j++)
11671168
{
11681169
video::S3DVertex vertices[4] =
11691170
{
1170-
video::S3DVertex(-s,-s, 0, 0,0,0, c, 0,1),
1171-
video::S3DVertex( s,-s, 0, 0,0,0, c, 1,1),
1172-
video::S3DVertex( s, s, 0, 0,0,0, c, 1,0),
1173-
video::S3DVertex(-s, s, 0, 0,0,0, c, 0,0),
1171+
video::S3DVertex(-s,-BS/2, 0, 0,0,0, c, 0,1),
1172+
video::S3DVertex( s,-BS/2, 0, 0,0,0, c, 1,1),
1173+
video::S3DVertex( s,-BS/2 + s*2,0, 0,0,0, c, 1,0),
1174+
video::S3DVertex(-s,-BS/2 + s*2,0, 0,0,0, c, 0,0),
11741175
};
11751176

11761177
if(j == 0)
@@ -1184,10 +1185,11 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
11841185
vertices[i].Pos.rotateXZBy(-44 + n.param2 * 2);
11851186
}
11861187

1187-
for(u16 i = 0; i < 4; i++)
1188+
for (int i = 0; i < 4; i++)
11881189
{
11891190
vertices[i].Pos *= f.visual_scale;
1190-
vertices[i].Pos.Y -= s * (1 - f.visual_scale);
1191+
if (f.visual_scale < 1)
1192+
vertices[i].Pos.Y -= BS/2 * (1 - f.visual_scale);
11911193
vertices[i].Pos += intToFloat(p, BS);
11921194
}
11931195

4 commit comments

Comments
 (4)

kwolekr commented on Dec 18, 2014

@kwolekr
Contributor

No, dammit Zeno-, stop changing array indicies to signed types!
Prefer size_t. If there's a mismatched comparison between signed and unsigned types, then perhaps the signed part should be changed to unsigned.

Zeno- commented on Dec 18, 2014

@Zeno-
ContributorAuthor

Rubbish. I did not change it to a signed type for that reason (at all). This change had nothing to do with signedness

Zeno- commented on Dec 18, 2014

@Zeno-
ContributorAuthor

And also, dammit kwolekr, stop pushing code with compiler warnings!

RealBadAngel commented on Dec 18, 2014

@RealBadAngel
Contributor

hold on a second. why the heck have you altered that code??
you have just broken part for plantlike being mounted on the ground regardless the scale of it.

Please sign in to comment.