🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download
  • Forest Generator Ruby

    4
    0 Votes
    4 Posts
    2k Views
    GaieusG
    Either Component Spray or Make Fur: http://forums.sketchucation.com/viewtopic.php?t=28092 (both with the appropriate settings of course)
  • ZORRO DOWNLOAD !!??

    3
    0 Votes
    3 Posts
    2k Views
    T
    You may want to put an 'Alias' to that folder on your desktop. Simply download, unzip to the desktop (if needed- usually that is done automatically) pick up the ruby with your mouse, hold over the plugins alias, a window will open (spring loaded files- doesn't do that on a PC or Linux), then simply drop in place. Easy.
  • Where'd my plugin go?

    5
    0 Votes
    5 Posts
    286 Views
    I
    Good to know. Cheers to the mods!
  • Redraw groups

    8
    0 Votes
    8 Posts
    484 Views
    D
    I have had a lot of problems with components messing around, renaming randomly and not allow me to have the same names for different components.Components are not very convenient when You have huge library with the same components in different hierarchy levels and try to mix them in a single project, make copies and etc.So far groups are working flawlessly except redrawing - so I will continue adding onclick redraw to each group. Thanks.
  • Plugin Request: Show Keypress

    5
    0 Votes
    5 Posts
    457 Views
    B
    Ah, thanks. I've been looking but no luck. I was poking at autohotkey but I'm pretty new at that as well. I'll keep looking.
  • Plugin Idea

    11
    0 Votes
    11 Posts
    809 Views
    thomthomT
    Warning: Strange gremlins might appear in SketchUp if entities outside the current context is selected. User and developers beware.
  • [Plugin] Cloud.rb for SU6

    54
    0 Votes
    54 Posts
    48k Views
    F
    Thanks a lot I have the good plugin, I install it 3 days ago.. Mystery
  • UV toolkit problem

    5
    0 Votes
    5 Posts
    292 Views
    S
    Thanks Gaeius I found it out a while ago, I watched it in Go 2 school Projecting the photo to terrain.
  • [Plugin] $ Copy Brick (Updated 5/04/11)

    64
    0 Votes
    64 Posts
    39k Views
    S
    Upgrade plugins First Message Brick_16TRIAL.zip
  • Two Plugins I wanted to Buy

    15
    0 Votes
    15 Posts
    1k Views
    EarthMoverE
    Piece Tracer?
  • Request plugin fix

    4
    0 Votes
    4 Posts
    323 Views
    dereiD
    Thank you, I'll give it a spin!
  • Error upon opening su

    9
    0 Votes
    9 Posts
    639 Views
    L
    Thanks Fredo
  • [Plugin]Matchbox_r1.1

    24
    0 Votes
    24 Posts
    28k Views
    thomthomT
    @kiranl said: It seems to break VRay too, Funny plugin tho. Can you elaborate? What happens? Errors? I looked at the source code and I could not see any thing that would interfere...
  • Roads

    4
    0 Votes
    4 Posts
    979 Views
    W
    Great! I'm glad it worked for you.
  • How To: Edit Plugin Names

    8
    0 Votes
    8 Posts
    604 Views
    honoluludesktopH
    Beyond my vision. I too have difficulty seeing a elephant swallowed by a snake.:) Aloha, Hat
  • Color by group anyone?

    3
    0 Votes
    3 Posts
    357 Views
    Bob JamesB
    I don't have a need for this tool at the moment: I'm just incredibly impressed at your response.... from "need" to new plugin in less than two hours...Awesome
  • Using 2D Tools

    4
    0 Votes
    4 Posts
    491 Views
    TIGT
    @dave wood said: TIG- Thanks for your quick reply. I've got the 2D Tools folder, deBabelizer, 2D#.rb, and the zip 4.9 2D Tools file in my SketchUp 7/Plugins directory. I've got a tool bar. I can draw 2D lines, rectangles, circles, polygons. I get instructions and I can change settings in line styles, but the lines stay black and continuous. I've tried selecting 2D lines first and then executing the line style command. I then tried just executing the line style command and then selecting lines with the line style pencil point icon. That actually has the effect of erasing (or hiding?) the 2D line. I can make faces. I've not been able to make the hatch command work consistently. I've tried applying hatch to a face and also picking the inside of a 2D rectangle with no face with no results. I can select different patterns. I can change settings on 2D text and type text in the dialog box but nothing happens when I try to place the text. I didn't understand the description of the adjust line tool. Maybe like a trim tool, which would be great? ??? Any ideas? I think these tools you've developed would be extremely helpful if I can get them to work. I'm very impressed that you've been able to develop them. Thanks, again, Dave There is NO ZIP file in Plugins ??? So many questions................. Try - run 2DlineStyle then pick some lines ??? You need to change the 2DlineStyle settings with a 'right-click in space' to open the dialog + OK. If you have made some StyledLines that you want to change then select it/them and right-click over it to open the dialog to change the settings... ... With 2Dtext - if you set it to 'Z-plane' then it is 'flat' at z=0 - or what z-plane is set to - otherwise you might not be able to see it beneath other things ??? Set it to 'Any-Face' and it will be attached to any face/plane you pick.........
  • Need to find this terrain plugin its new

    3
    0 Votes
    3 Posts
    377 Views
    J
    thanks mudd.... its bookmarked in stone now!!! :0)
  • Purge Shortcuts

    2
    0 Votes
    2 Posts
    270 Views
    P
    Hey Guys, Figured it out, in case anyone else is curious. open regedit go to this directory HKEY_CURRENT_USER\Software\Google\SketchUp8\Settings delete everything except Num_shortcuts Now, does anyone know how to make the into a .reg file? or perhaps a .bat file ?
  • [Example] box.rb version 2.0.0

    9
    0 Votes
    9 Posts
    3k Views
    Dan RathbunD
    @edson said: would you care to explain what is the difference between your version and the one that packs with sketchup? I did in the first post of this thread. I wrapped the original code like thus: module Examples module SU module Box # the original create_box method end # Box end # SU end # Examples In addtion I made the create_box() method a module function (see Ruby Pick-Axe book: module_function) I also made a small correction, by moving the last line up inside the preceeding if block. I marked all lines that were added or moved. Wrapping the code, in it's own namespace prevents it from being corrupted by scripts that load afterwards, that have methods (or other objects,) with the same name. What was happening was, that after box.rb loaded, then later make_pano_pm.rb would load, and it ALSO had a method named " create_box". Since neither script (originally) was wrapped in a module they were actually defining methods within the SAME namespace (which is class Object.) Whenever Ruby reads a method definition of a method that is already defined, it deletes the old method, and replaces it with the new one. So.. make_pano_pm.rb was redefining the create_box() method that both scripts were trying to use,... BUT the latter one was not written to work with both scripts, and users trying to use box.rb would never see the box dimensions input dialog appear. If you did not have make_pano_pm.rb in your Tools folder (dir,) then box.rb would work normally, and you would not notice anything amiss. I did NOT change or improve box.rb to be a better plugin, because it's not a plugin. It's really a simple code snippet, to be used as an example and a base, from which ruby-newbie's are to play with and improve themselves, thereby learning by doing.

Advertisement