Skip to content

Commit

Permalink
Fix test failures for BarChair and RangeHood
Browse files Browse the repository at this point in the history
  • Loading branch information
araistrick authored and pvl-bot committed Nov 11, 2024
1 parent 7f02626 commit 7693091
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion infinigen/assets/objects/seating/chairs/bar_chair.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def create_asset(self, **params):
obj = bpy.context.active_object

surface.add_geomod(
obj, geometry_assemble_chair, apply=False, input_kwargs=self.params
obj, geometry_assemble_chair, apply=True, input_kwargs=self.params
)
tagging.tag_system.relabel_obj(obj)

Expand Down
2 changes: 1 addition & 1 deletion infinigen/assets/objects/table_decorations/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def nodegroup_lofting_poly(nw: NodeWrangler):

evaluate_on_domain = nw.new_node(
Nodes.EvaluateonDomain,
input_kwargs={1: index},
input_kwargs={0: index},
attrs={"domain": "CURVE", "data_type": "INT"},
)

Expand Down
2 changes: 1 addition & 1 deletion infinigen/assets/objects/tables/lofting.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def nodegroup_lofting(nw: NodeWrangler):

evaluate_on_domain = nw.new_node(
Nodes.EvaluateonDomain,
input_kwargs={1: index},
input_kwargs={0: index},
attrs={"domain": "CURVE", "data_type": "INT"},
)

Expand Down
2 changes: 1 addition & 1 deletion infinigen/infinigen_gpl

0 comments on commit 7693091

Please sign in to comment.