Announcement

Collapse
No announcement yet.

Limit round edges to specific objects

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Limit round edges to specific objects

    Is it possible to limite the round edge shader, to take some objects into account not all objects?
    Thanks

  • #2
    You can enable by object under Attributes>Round Edges
    https://www.artstation.com/damaggio

    Comment


    • #3
      Thanks for the reply damaggio. You're right in that this does enable round edges for individual objects. However it does not allow us to exclude certain objects

      Comment


      • #4
        Just don't apply round edges to those objects.
        https://www.artstation.com/damaggio

        Comment


        • #5
          You can use this script to set Round corner to a bunch of objects at once....

          string $selection[] = `ls -sl -dag -lf`; // remember all Shapenodes in selection
          for ($node in $selection)
          {
          vray addAttributesFromGroup $node vray_roundedges 1;
          vrayAddAttr $node vrayRoundEdges;
          vrayAddAttr $node vrayRoundEdgesRadius; // 3 lines add Vray arrtibutes
          setAttr ( $node + ".vrayRoundEdgesRadius") 0.12; // Set it to 0.12
          }
          https://www.artstation.com/damaggio

          Comment

          Working...
          X