Remove unnecessary if

This commit is contained in:
Lars Mueller 2023-02-26 16:55:54 +01:00
parent fdfe65167f
commit f225499795

@ -412,7 +412,7 @@ local function write_rope(self)
int(vertices.tex_coord_sets) int(vertices.tex_coord_sets)
int(vertices.tex_coord_set_size) int(vertices.tex_coord_set_size)
for _, vertex in ipairs(vertices) do for _, vertex in ipairs(vertices) do
if vertex.pos then vector3(vertex.pos) end vector3(vertex.pos)
if vertex.normal then vector3(vertex.normal) end if vertex.normal then vector3(vertex.normal) end
if vertex.color then color(vertex.color) end if vertex.color then color(vertex.color) end
for tex_coord_set = 1, vertices.tex_coord_sets do for tex_coord_set = 1, vertices.tex_coord_sets do