Potencially fix nan's on octahedral tangents in RenderingServer
(cherry picked from commit 1d16704faf
)
This commit is contained in:
parent
92040e85e2
commit
2bfeb29bc6
|
@ -647,11 +647,11 @@ SpriteBase3D::SpriteBase3D() {
|
|||
|
||||
// Create basic mesh and store format information.
|
||||
for (int i = 0; i < 4; i++) {
|
||||
mesh_normals.write[i] = Vector3(0.0, 0.0, 0.0);
|
||||
mesh_tangents.write[i * 4 + 0] = 0.0;
|
||||
mesh_normals.write[i] = Vector3(0.0, 0.0, 1.0);
|
||||
mesh_tangents.write[i * 4 + 0] = 1.0;
|
||||
mesh_tangents.write[i * 4 + 1] = 0.0;
|
||||
mesh_tangents.write[i * 4 + 2] = 0.0;
|
||||
mesh_tangents.write[i * 4 + 3] = 0.0;
|
||||
mesh_tangents.write[i * 4 + 3] = 1.0;
|
||||
mesh_colors.write[i] = Color(1.0, 1.0, 1.0, 1.0);
|
||||
mesh_uvs.write[i] = Vector2(0.0, 0.0);
|
||||
mesh_vertices.write[i] = Vector3(0.0, 0.0, 0.0);
|
||||
|
|
Loading…
Reference in New Issue