π‘ LightUp 7.1 | SketchUp's only real-time renderer that uses object-based rendering
Download Trial
[REQ] Switch off "face camera" for a selection of components
-
I think I have asked for this a long time ago but cannot find it.
Is there a script to switch off Always Face Camera for a selection of components?
Maybe even a toggle to turn them on again... -
These one-liners work on the definitions of ALL instances in the current selection...
OFFSketchup.active_model.selection.to_a.find_all{|e|e.class==Sketchup;;ComponentInstance}.map{|i|i.definition}.each{|d|d.behavior.always_face_camera=false}
ON
Sketchup.active_model.selection.to_a.find_all{|e|e.class==Sketchup;;ComponentInstance}.map{|i|i.definition}.each{|d|d.behavior.always_face_camera=true}
-
Thanks, TIG.
I had my hopes on you.
Advertisement