sketchucation logo sketchucation
    • Login
    1. Home
    2. iApple
    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
    I
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 1
    • Groups 1

    iApple

    @iApple

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    iApple Unfollow Follow
    registered-users

    Latest posts made by iApple

    • 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

      posted in Extensions & Applications Discussions extensions
      I
      iApple