Announcement

Collapse
No announcement yet.

Problème de matériaux sur l'asset Editor

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

  • Problème de matériaux sur l'asset Editor

    Bonjour,
    J'ai réalisé une 3D mais il y a un problème dans l'Asset Editor, dans l'onglet de droite, au lieu des réglages de matériaux et de l'image du matériau, il est noté "An error occurred (was encountered)."
    Il y a plusieurs jours de travail sur cette 3D, je ne peux pas me permettre de la recommencer ! Une solution à m'apporter? (sachant que je n'y connait pas grand chose en informatique)
    Merci d'avance !!

  • #2
    Hi elodie_planforet,

    This error is usually due to some materials that didn't migrate correctly. If you are with the latest V-Ray 5 for SketchUp, update 1.1, you might want to try the following snippet and the next time you open the project, this issue should be gone:
    • Please open the Ruby Console from SketchUp Window > Ruby Console and copy-paste the code -
    Code:
    Sketchup.active_model.materials.each { |mtl|
      mtl_class = mtl.get_attribute('VRayInfo', 'class')
      next unless mtl_class == 'MtlASGVIS'
    
       mtl.attribute_dictionaries.delete('VRayInfo')
      mtl.attribute_dictionaries.delete('VRayPlugins')
    }

    After that save the SketchUp model and reopen the file - please confirm if this resolves the issue on your side!
    Nikoleta Garkova | chaos.com

    Comment

    Working...
    X