🔌 Smart Spline | Fluid way to handle splines for furniture design and complex structures. Download
  • Ruby Equivalent of Move/Copy

    6
    0 評價
    6 貼文
    4k 瀏覽
    TIGT
    You can only use entities.add_instance() of a definition, BUT there's no built in group.definition method , BUT all components, groups and images are all just types of instances of a definition. To find a group's definition you have to find its entities' parent which is the definition - so defn = group.entities.parent ComponentDefinition just as the much snappier method defn = instance.definition does for a component-instance ! The second argument of the entities.add_instance(defn, **tr**) is the transformation used to place/manipulate the new instance...
  • Problem with Profile Builder

    13
    0 評價
    13 貼文
    890 瀏覽
    Rich O BrienR
    You can buy me dinner
  • Transparent PNG Clip

    3
    0 評價
    3 貼文
    362 瀏覽
    gtalaricoG
    Thanks! I knew I wasn't crazy....
  • Helps curviloft , extrude tools and thickness

    2
    0 評價
    2 貼文
    348 瀏覽
    Rich O BrienR
    JointPushPull by Fredo. Read the accompanying manual under the Tools menu.
  • Plugin Question - Normal face to camera?

    9
    0 評價
    9 貼文
    741 瀏覽
    W
    Great, thanks guys those are great plugins!
  • What plugins are these?

    2
    0 評價
    2 貼文
    257 瀏覽
    Didier BurD
    first one is xformclone.rb second: I don't know (i didn't find it in my database)
  • How can you combine two ruby scripts?

    10
    0 評價
    10 貼文
    620 瀏覽
    brodieB
    Well, these aren't really panels. It's stucco/eifs with joints so the subs don't care if there are 3 sizes or 30 because the joints are located on site. It's not like a cement panel where a form needs to be made and they need to be modular. Regardless, I have no influence on this. The fact is there is very little constancy. What you're describing seems to be the best method without a ruby. Once some simple modeling is done, a ruby is unnecessary true, however it's quite a lot of simple and repetitive modeling, which is what ruby's tend to excel at. If you had the option would you do it your way? Or would you bring in the CAD drawings, run Make Faces on it and then run a Make Bevels script on it and be done? -Brodie
  • Is there a plugin to shrink/grow your selection set?

    18
    0 評價
    18 貼文
    1k 瀏覽
    B
    Method 1 is similar to how I would've done it, except that I would rather make a vertical row(column) first, because that would make it easier to select (unless it is a very tall building).
  • Context menu RANT

    6
    0 評價
    6 貼文
    439 瀏覽
    TIGT
    I think that to minimize the number of plugins that actually 'load' and thereby make 'commands' [which are the things that are causing this 'overload' until Google fix it ] you must disable some tool from loading completely at all. If a tools loads, but it's 'disabled' under the 'Extensions' por even the 'Toolbar' settings] it could still add 'commands' to Sketchup... so that will ultimately add to the total - disafortunamente ... So you do need to disable these tools completely... that is, by renaming the .rb file that is loading the tool from the Plugins folder with an additional .TXT suffix: so then it won't auto-load as Sketchup starts... BUT later on, if you decide it's needed, you can always load it for that session only, by using load 'script.rb.TXT' in the Ruby Console... Hopefully some future improvements in Plugin Management will make all of this much easier
  • Need Help

    7
    0 評價
    7 貼文
    429 瀏覽
    V
    Dear Didier, Thanks for this sweet plug-ins, never realized this until i need to put some angular measure on my drawing... regards,
  • Is there a plugin to select all lines?

    6
    0 評價
    6 貼文
    460 瀏覽
    A
    I used the "select only tools" http://forums.sketchucation.com/viewtopic.php?t=24474 and then the "solid inspector" http://forums.sketchucation.com/viewtopic.php?t=30504 . They did the job nicely. Thanks a lot, everybody.
  • Help Identifying Plugins (images)

    10
    0 評價
    10 貼文
    426 瀏覽
    A
    Thank you to all for your helpful responses!
  • [Request] Display a Model Disclaimer ??

    9
    0 評價
    9 貼文
    463 瀏覽
    JClementsJ
    The idea of having a disclaimer at time of downloading is something to consider although once downloaded ..... I wonder if disclaimer text entered in the Model Description of the Model info > File tab could somehow be used for a message. But that would, I guess, require SU9 to have process functions like "OnOpen" as a part of the file structure itself. (Kind of funny, long ago, when I think back to using WordPerfect for DOS, I could associate OnOpen, OnSave, OnPrint, etc., script-functions to any of the menu items for a document or series of interrelated documents; I did this for an entire "electronic" operations and maintenance manual over 10 years ago.)
  • Unwrapping / texturing a big cylinder

    35
    0 評價
    35 貼文
    3k 瀏覽
    R
    Another solution would be to place plants in front of the pillars.
  • [Request] Batch DXF Export

    6
    0 評價
    6 貼文
    2k 瀏覽
    TIGT
    I wrote this a while ago - it exports a selection to any available format http://forums.sketchucation.com/viewtopic.php?p=183756#p183756 So in your case it'd be export_selection('dxf') Of course you need the appropriate exporter - so for DXF you need v8Pro on one of the earlier versions that came with it in Free...
  • [Plugin] Add Scene Layers

    5
    0 評價
    5 貼文
    7k 瀏覽
    HumpmetwiceH
    Thanks alot Tig, thats what I needed! Sketchup for sure wouldn't be the same if it wasn't for masters like yourself! Thanks again Kurt
  • Multi file component list to excel

    4
    0 評價
    4 貼文
    816 瀏覽
    S
    Thanks both for your responses - Ive been side tracked by another project but will be looking back into this shortly. Component reporter is fantastic TIG - very detailed! And JGB thanks for advice about running the script on files individually, no problem just wondered if I could run it on multiple files to save some time. Cheers Sam
  • Plugin request: 'gravity'

    3
    0 評價
    3 貼文
    317 瀏覽
    D
    Awesome.... Thanks!
  • [Plugin] Color By

    6
    0 評價
    6 貼文
    9k 瀏覽
    AdamBA
    I was needing something like this last week.. And while thinking how it might be done, it would seem an elegant way might be to write it so an arbitrary fragment of Ruby is evaluated with known arguments. You could have some "presets" - as you do - but they would simply be preset Ruby fragments that are eval-ed on the arguments. Users could add any Ruby fragment they liked to extend it. two cents worth and all that.. Adam
  • [REQ] Another type of component edit ( for plants)

    4
    0 評價
    4 貼文
    306 瀏覽
    jolranJ
    I'm taking a guess you are using the free version of Sketchup, right? Cause If I understand you correctly, what you are asking for is what Dynamic Components are used for. You assign different attributes and change them accordingly. I don't think any plugin developper is "up to the mood" of creating a new DC component plugin. However a special "plant" plugin with different attributes etc is fully possible to create! But then again it have to be something extra to compete with DC's.. OR maybe to satisfy "nonpro" versions of Sketchup.

Advertisement