sketchucation logo sketchucation
    • 登入
    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!
    🔌 Smart Spline | Fluid way to handle splines for furniture design and complex structures. Download

    [Plugin] Material Tools

    已排程 已置頂 已鎖定 已移動 Plugins
    124 貼文 44 Posters 158.9k 瀏覽 44 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • H 離線
      hank
      最後由 編輯

      OK, figured out what is up with "List Textures in Console" I think...

      I changed puts to print in the following def from Plugins/tt_material_tools/core.rb and it works in SU2018 (sorry ThomThom - I'm probably not supposed to be messing around in there!?). So general question... is puts no longer valid in 2018?

      def self.list_textures
          Sketchup.send_action('showRubyPanel;')
          # Collect textures and sort by size
          mats = Sketchup.active_model.materials.select { |m|
            !m.texture.nil?
          }
          mats.sort! { |a,b|
            size_a = a.texture.image_width * a.texture.image_height
            size_b = b.texture.image_width * b.texture.image_height
            size_b <=> size_a
          }
          # Print textures
          print "=== TEXTURE MATERIALS BY SIZE ==="
          buffer = ''
          mats.each { |m|
            next if m.texture.nil?
            t = m.texture
            size = t.image_width * t.image_height
            file = File.basename( t.filename )
            path = File.dirname( t.filename )
            #puts "#{m.display_name} - #{t.image_width}x#{t.image_height} - #{t.filename}"
            buffer << "#{m.display_name}\n"
            buffer << "  Size; #{t.image_width}x#{t.image_height} pixels\n"
            buffer << "  Size; #{self.readable_file_size(size*3, 2)} estimated uncompressed RGB\n"
            buffer << "  Size; #{self.readable_file_size(size*4, 2)} estimated uncompressed RGBA\n"
            if File.exist?( t.filename )
              disksize = File.size( t.filename )
              buffer << "  Size; #{self.readable_file_size(disksize, 2)} on disk\n"
            end
            buffer << "  File; #{file}\n"
            buffer << "  Path; #{path}\n"
          }
          print buffer
          print "---"
        end
      
      1 條回覆 最後回覆 回覆 引用 0
      • S 離線
        stefankaplan
        最後由 編輯

        This is a great extension! - and the only one I've found that lists in model textures and their file sizes, which is key when trying to reduce size of the SketchUp model.

        Only problem is: It only work on my Mac. When running "List textures in console", an empty console appears (in SketchUp 2022 and 2023) 😞

        I've tried to disable all other extensions but no luck, the console still doesn't list any textures on my Windows computer.

        Any advice?


        list textures in console.png

        1 條回覆 最後回覆 回覆 引用 0
        • Dave RD 離線
          Dave R
          最後由 編輯

          @stefankaplan said:

          ... the console still doesn't list any textures on my Windows computer.

          Any advice?

          This is what I get in the console when I run this feature. This is in SketchUp 2023.

          Screenshot - 3_23_2023 , 9_46_15 AM.png

          Did you install SketchUp correctly? That requires right clicking on the downloaded installer file and selecting Run as administrator from the context menu. If you didn't or don't remember, close SketchUp, find the installer in your Downloads folder, right click on it, choose Run as administrtor and then Repair.

          BTW, did you have the Ruby Console opened before you ran the extension?

          Etaoin Shrdlu

          %

          (THERE'S NO PLACE LIKE)

          G28 X0.0 Y0.0 Z0.0

          M30

          %

          1 條回覆 最後回覆 回覆 引用 0
          • V 離線
            Vendettos
            最後由 編輯

            @thomthom Same error as the others above. - When running "List textures in console", an empty console appears (in SketchUp 2025). Any solutions?

            1 條回覆 最後回覆 回覆 引用 0
            • 1
            • 2
            • 3
            • 4
            • 5
            • 6
            • 7
            • 7 / 7
            • 第一個貼文
              最後的貼文
            Buy SketchPlus
            Buy SUbD
            Buy WrapR
            Buy eBook
            Buy Modelur
            Buy Vertex Tools
            Buy SketchCuisine
            Buy FormFonts

            Advertisement