Announcement

Collapse
No announcement yet.

Automatic texture helper genetrator

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Automatic texture helper genetrator

    Hi,

    it would be nice to have automatic texture helper generator based on diffuse texture with limited texture size. Because sketchup contains all textures inside file, so every 5mb texture increases file size.

  • #2
    Hello,

    Your proposal was discussed but considered not worth implementing due to increased complexity and the loss of detail in projects opened without V-Ray while offering little benefit since tex size is not the main contributor to large project file size.

    Nevertheless, I can offer you a couple of solutions:

    1. Open the Ruby Console and paste the following:
    Code:
    VRay::LiveScene.active.grep(:MtlASGVIS).each{|asgvis| asgvis[:bind_texture_mode] = 1}

    This will force all standard material diffuse textures to appear as V-Ray placeholder textures in the SketchUp viewport, thus reducing overall .skp size.
    2. Retain diffuse textures only within the .skp file, thus saving you some HDD space. Each time you open an .skp project, its material textures are extracted in a temp folder which V-Ray can utilize.

    Let me know if you have any further questions or proposals!

    Kind regards,
    Peter
    Last edited by Peter.Chaushev; 26-06-2018, 05:15 AM.
    Peter Chaushev
    V-Ray for SketchUp | V-Ray for Rhino | Product Specialist
    www.chaos.com

    Comment


    • #3
      Thank you! it's working.

      ps. there was syntax error, one space too much
      Code:
      VRay::LiveScene.active.grep(:MtlASGVIS).each{|asgvis| asgvis[:bind_texture_mode] = 1}
      edit: probably forum corrects this code

      Comment


      • #4
        Thanks, must have been the formatting. Edited my previous post.
        Peter Chaushev
        V-Ray for SketchUp | V-Ray for Rhino | Product Specialist
        www.chaos.com

        Comment


        • #5
          Interesting that ASGVIS is still buried in there! The good ole days.
          Matthew Valero, ASAI

          Comment

          Working...
          X