mirror of
https://github.com/Relintai/props.git
synced 2024-11-14 10:17:30 +01:00
Only transform the normal with the basis.
This commit is contained in:
parent
2fcab242f9
commit
f2d1383ba8
@ -614,22 +614,22 @@ void PropMesher::add_tiled_wall_mesh_rect_simple(const int x, const int y, const
|
||||
int vc = get_vertex_count();
|
||||
|
||||
//x + 1, y
|
||||
add_normal(transform.xform(Vector3(0, 0, -1)));
|
||||
add_normal(transform.basis.xform(Vector3(0, 0, -1)));
|
||||
add_uv(transform_uv(Vector2(1, 1), texture_rect));
|
||||
add_vertex(transform.xform(Vector3(x + 1, y, 0)));
|
||||
|
||||
//x, y
|
||||
add_normal(transform.xform(Vector3(0, 0, -1)));
|
||||
add_normal(transform.basis.xform(Vector3(0, 0, -1)));
|
||||
add_uv(transform_uv(Vector2(0, 1), texture_rect));
|
||||
add_vertex(transform.xform(Vector3(x, y, 0)));
|
||||
|
||||
//x, y + 1
|
||||
add_normal(transform.xform(Vector3(0, 0, -1)));
|
||||
add_normal(transform.basis.xform(Vector3(0, 0, -1)));
|
||||
add_uv(transform_uv(Vector2(0, 0), texture_rect));
|
||||
add_vertex(transform.xform(Vector3(x, y + 1, 0)));
|
||||
|
||||
//x + 1, y + 1
|
||||
add_normal(transform.xform(Vector3(0, 0, -1)));
|
||||
add_normal(transform.basis.xform(Vector3(0, 0, -1)));
|
||||
add_uv(transform_uv(Vector2(1, 0), texture_rect));
|
||||
add_vertex(transform.xform(Vector3(x + 1, y + 1, 0)));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user