Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download
Remove color using ruby
-
how to remove the material (color) from object using ruby?
-
[%(#BF0000)[Drawingelement.material]](http://code.google.com/apis/sketchup/docs/ourdoc/drawingelement.html#material) = nilFor example:
face = Sketchup.active_model.selection[0] face.material = nil face.back_material = nil( Side note: If you wanted to remove only the color from a texture (when a texture is colorized), it seems not to work with material.color = nil, but turns it black )
Advertisement