Skip to content

Commit

Permalink
Fixed weather poly position
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Garcia committed Feb 17, 2024
1 parent 64fc873 commit 0ab1509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_scene_halo/file_tag/build_scene/build_bsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def build_scene(context, LEVEL, game_version, game_title, file_version, fix_rota

bm = bmesh.new()
for coord in coords:
bm.verts.new(coord*100 + weather_polyhedra.bounding_sphere_center)
bm.verts.new(coord*100)

bmesh.ops.convex_hull(bm, input=bm.verts)
mesh = bpy.data.meshes.new("weather_polyhedra_%d" % poly_idx)
Expand Down

0 comments on commit 0ab1509

Please sign in to comment.