Skip to content

Commit

Permalink
always allow bend nodes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kianzarrin committed May 11, 2022
1 parent 1549ff6 commit ad4f58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NodeController/Manager/NodeData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ public bool CanChangeTo(NodeTypeT newNodeType) {
case NodeTypeT.Stretch:
return CanModifyTextures() && !middle && IsStraight;
case NodeTypeT.Bend:
return !middle;
return true; // !middle; clus wants to use bend nodes.
case NodeTypeT.Nodeless:
//return IsStraight || Is180;
return true; // all junctions can be node-less
Expand Down

0 comments on commit ad4f58d

Please sign in to comment.