model = Sketchup.active_model.materials
Sketchup.active_model.start_operation '...'
Sketchup.active_model.materials.each{|e|
a = (10+rand*90).to_i.to_s
e.name = e.name.gsub('<', a)
e.name = e.name.gsub('>', a)
}#脚本作者:dota_
Sketchup.active_model.commit_operation
——————————————————————————————————————————
这个应该是你使用的模型比你的 SU 版本要旧一些,如果是直接在 SU里建模一般不会出现这个问题的。