I have been working on my model and it was rendering fine until now. I have an issue page coming all the time I want to render and framebuffer don't work.
I got in touch through email with chaosgroup support and followed the steps that I was told to do on ruby but still didn't work.
Follows attached the message that comes when I click the render icon and bellow the message that came up on the ruby console.
model = Sketchup.active_model
materials = model.materials
bad_entities = ([model] + model.definitions.to_a).map{ |c|
c.entities.select{ |e| e.material && !materials.include?(e.material) }
}.flatten
bad_entities.each{ |e|
e.material = nil
}
[#<Sketchup::Face:0x00000208603d3cf8>, #<Sketchup::Face:0x00000208603d3640>, #<Sketchup::Face:0x00000208603d34b0>, #<Sketchup::Face:0x00000208736fb008>]
I got in touch through email with chaosgroup support and followed the steps that I was told to do on ruby but still didn't work.
Follows attached the message that comes when I click the render icon and bellow the message that came up on the ruby console.
model = Sketchup.active_model
materials = model.materials
bad_entities = ([model] + model.definitions.to_a).map{ |c|
c.entities.select{ |e| e.material && !materials.include?(e.material) }
}.flatten
bad_entities.each{ |e|
e.material = nil
}
[#<Sketchup::Face:0x00000208603d3cf8>, #<Sketchup::Face:0x00000208603d3640>, #<Sketchup::Face:0x00000208603d34b0>, #<Sketchup::Face:0x00000208736fb008>]
Comment