Announcement

Collapse
No announcement yet.

material colour from object colour?

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

  • material colour from object colour?

    like this:

    https://knowledge.autodesk.com/suppo...FDA04-htm.html

    but in vray..

    ive got a model without materials, but the colours are all correct, set by wireframe colour.. i wanna do the materials as quick as possible! deadlineeeees

  • #2
    Maybe you could use a script for that, for example the following script will create a new V-Ray Material for each object into selection and will use its wireframe color for the Diffuse:

    Code:
    for i = 1 to selection.count do
    (
    newmat = VRayMtl()
    newmat.name = ("MAT_" + i as string)
    newmat.diffuse = selection[i].wirecolor
    selection[i].material = newmat
    )
    Svetlozar Draganov | Senior Manager 3D Support | contact us
    Chaos & Enscape & Cylindo are now one!

    Comment


    • #3
      http://lastjedioutpost.ru/?l=en&p=ky...r&s=guide&c=ui

      this looks like it can take wire color.
      never used it though.
      Marcin Piotrowski
      youtube

      Comment


      • #4
        thanks for the suggestions guys

        Comment

        Working...
        X