mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-05 00:45:05 -05:00
Allow full circle rotation with 2degs step for plantlike drawtype.
This commit is contained in:
parent
9dc8901e32
commit
3bf05f020c
@ -1119,12 +1119,12 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
|
||||
if(j == 0)
|
||||
{
|
||||
for(u16 i=0; i<4; i++)
|
||||
vertices[i].Pos.rotateXZBy(46 + n.param2);
|
||||
vertices[i].Pos.rotateXZBy(46 + n.param2 * 2);
|
||||
}
|
||||
else if(j == 1)
|
||||
{
|
||||
for(u16 i=0; i<4; i++)
|
||||
vertices[i].Pos.rotateXZBy(-44 + n.param2);
|
||||
vertices[i].Pos.rotateXZBy(-44 + n.param2 * 2);
|
||||
}
|
||||
|
||||
for(u16 i=0; i<4; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user