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!
π« Lightbeans Update | Metallic and Roughness auto-applied in SketchUp 2025+ Download
[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