Who could help to develop this rb?
-
Hi All, I found a "Layer Face Camera" plugin, and it's useful. But it can only turn off "always face camera". Who could help to add Switch ON/OFF function? Thank you very much.
version:
Added Undo
module JF
def self.layer_face_camera
layers = Sketchup.active_model.layers
name = UI.inputbox(["Layer"], [layers[0].name], [layers.map{|l|l.name}.join("|")])
return unless name
Sketchup.active_model.start_operation("Layer Face Camera")
Sketchup.active_model.entities.each { |ent|
next unless ent.is_a? Sketchup::ComponentInstance
next unless ent.layer.name == name[0]
cdef = ent.definition
cdef.behavior.always_face_camera = false
}
Sketchup.active_model.commit_operation
end
end -
# version; # Added Undo module JF def self.layer_face_camera layers = Sketchup.active_model.layers name = UI.inputbox(["Layer;","On/Off;"], [layers[0].name,"Off"], [layers.map{|l|l.name}.join("|"),"On|Off"]) return unless name Sketchup.active_model.start_operation("Layer Face Camera") Sketchup.active_model.entities.each { |ent| next unless ent.is_a? Sketchup;;ComponentInstance next unless ent.layer.name == name[0] cdef = ent.definition cdef.behavior.always_face_camera = true if name[1]=="On" cdef.behavior.always_face_camera = false if name[1]=="Off" } Sketchup.active_model.commit_operation end end
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better π
Register LoginAdvertisement