Skip to content

Commit

Permalink
off by one index
Browse files Browse the repository at this point in the history
  • Loading branch information
zeffii authored May 10, 2021
1 parent 2e353d5 commit 5a59925
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/sv_default_macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def verbose_macro_handler(cls, operator, context, term):

links.new(obj_in_node.outputs[0], vd_node.inputs[0])
links.new(obj_in_node.outputs[2], vd_node.inputs[2])
links.new(obj_in_node.outputs[3], vd_node.inputs[3])
links.new(obj_in_node.outputs[4], vd_node.inputs[3])

elif term == 'objs vd':
obj_in_node = nodes.new('SvObjectsNodeMK3')
Expand All @@ -190,7 +190,7 @@ def verbose_macro_handler(cls, operator, context, term):

links.new(obj_in_node.outputs[0], vd_node.inputs[0])
links.new(obj_in_node.outputs[2], vd_node.inputs[2])
links.new(obj_in_node.outputs[3], vd_node.inputs[3])
links.new(obj_in_node.outputs[4], vd_node.inputs[3])

elif term == 'zen':
full_url_term = 'https://gist.github.com/zeffii/d843b985b0db97af56dfa9c30cd54712'
Expand Down

0 comments on commit 5a59925

Please sign in to comment.