sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Sketchup Ivy

    Scheduled Pinned Locked Moved Plugins
    732 Posts 172 Posters 265.8k Views 172 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • KrisidiousK Offline
      Krisidious
      last edited by

      @kjammer said:

      The SketchupIvy.0.6.3 is a .rar file and Sketchup cant recognize it because it not an rbz. how do we install it?

      Just extract it to your plugins folder. It's a zip folder.

      By: Kristoff Rand
      Home DesignerUnique House Plans

      1 Reply Last reply Reply Quote 0
      • TIGT Offline
        TIG Moderator
        last edited by

        You can get the RBZ version from http://sketchucation.com/resources/pluginstore?pln=SketchupIvy
        😒

        TIG

        1 Reply Last reply Reply Quote 0
        • S Offline
          saturne45
          last edited by

          Hello everybody, this very nice plugin working good with skp8 on windows xp and don't work with skp8 on windows vista?? with files in rar or rbz. anybody had got the same problem?? and is there a solution. thank you.

          1 Reply Last reply Reply Quote 0
          • KrisidiousK Offline
            Krisidious
            last edited by

            It will work on any system you put it on. perhaps you're having conflicts with other old plugins.

            By: Kristoff Rand
            Home DesignerUnique House Plans

            1 Reply Last reply Reply Quote 0
            • TIGT Offline
              TIG Moderator
              last edited by

              If you don't explain 'how it doesn't work' then no one will be able to help you to fix this problem.
              It WILL install and work...
              You are either mis-installing, mis-using or have other conflicting plugins [like maybe Vray beta] ?
              Give us a clue ! 😒

              TIG

              1 Reply Last reply Reply Quote 0
              • S Offline
                saturne45
                last edited by

                Thank you for reply, when I start the plugin I can't get the reds lines ( branch) on my face,when I do ctrl left clic I get a littles crosses and shift clic I do that ? see on my screencapture. The plug installation is correct.
                right now; I'm looking for if there is a conflict with others plugins.Thank you.


                liveivi .jpg

                1 Reply Last reply Reply Quote 0
                • saberopusS Offline
                  saberopus
                  last edited by

                  just left click to continue the growing process, then use ctrl+click (as you know) to add leaves and shift+click to finish

                  1 Reply Last reply Reply Quote 0
                  • saberopusS Offline
                    saberopus
                    last edited by

                    @jbjdesigns said:

                    The "branch" part worked okay; but when I applied the leaves, they all drooped (no matter what settings I used... and I really tried to make this work).

                    I seem to be having this same issue... all the leaves point downward, generally, and so the overall appearance is 'droopy.' There's doesn't seem to be a parameter to adjust this, though? Any thoughts?

                    1 Reply Last reply Reply Quote 0
                    • KrisidiousK Offline
                      Krisidious
                      last edited by

                      Gravity might be your problem. Try setting it lower... Somewhere earlier in these posts there are default settings.

                      By: Kristoff Rand
                      Home DesignerUnique House Plans

                      1 Reply Last reply Reply Quote 0
                      • S Offline
                        saturne45
                        last edited by

                        Hello, Thank you for your reply, Still not find a solution. But can you explain to me this error message in the ruby consolle? look on screencapture. Thank you.


                        IVI.jpg

                        1 Reply Last reply Reply Quote 0
                        • M Offline
                          mechipo
                          last edited by

                          Thanks for this !!

                          1 Reply Last reply Reply Quote 0
                          • L Offline
                            lomanzo78
                            last edited by

                            Hi im also having probles in Mac. the pluggin dialog apears, but at the moment than I want to do an ivy it desnt do anything, can you help me
                            thanks

                            1 Reply Last reply Reply Quote 0
                            • OxerO Offline
                              Oxer
                              last edited by

                              I'm having problems now too in OSX 10.9.1 and SU2013, before the Ivy version 0.6 worked fine on Mac, now when i call the plugin it appears this in Ruby Console:

                              Ruby Console Error .jpg

                              PS: I have uninstalled all the plugins except Ivy and the problem persists.

                              "The result is the end what is important is the process" by Oxer
                              [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

                              1 Reply Last reply Reply Quote 0
                              • TIGT Offline
                                TIG Moderator
                                last edited by

                                You have float values saved as 0,8 rather than 0.8 so the commas breaks the conversion of the read_defaults string back into the hash ! There are some commas it needs, and some that should be '.' !
                                You use a commas as your decimal separator rather than the '.', but Ruby uses '.' always...
                                It should be something like:
                                {:gravity=>{:vector=>[0, 0, -1], :weight=>1,0}, :branch=>{:radius=>0,8, :nodesize=>3, :detail=>4, :probability=>0,97, :floatlength=>150, :spread=>1,0, :pattern=>0,8}, :wind=>{:weight=>0,1}, :random=>{:weight=>0,3}, :adhesion=>{:weight=>0,2, :max_adhesion_distance=>50}, :legacy=>{:weight=>0,8}, :leaf=>{:probability=>0,75, :size=>5,0, :pattern=>1}}
                                but you have:
                                {:gravity=>{:vector=>[0, 0, -1], :weight=>1,0}, :branch=>{:radius=>0.8, :nodesize=>3, :detail=>4, :probability=>0.97, :floatlength=>150, :spread=>1,0, :pattern=>0.8}, :wind=>{:weight=>0.1}, :random=>{:weight=>0.3}, :adhesion=>{:weight=>0.2, :max_adhesion_distance=>50}, :legacy=>{:weight=>0.8}, :leaf=>{:probability=>0.75, :size=>5,0, :pattern=>1}}

                                If you edit the file 'LiveVector_core.rb' with a plain-text editor and find line #61 that says:
                                return eval(str)
                                and now insert these lines of code just in front of it, thus:
                                split=str.split('=>') split.dup.each_with_index{|e, i| next unless e=~/^[0-9]/; next unless e.count(',')==2; split[i]=e.sub(/,/, '.') } str=split.join('=>')
                                then
                                return eval(str)
                                This should change the ',' to '.' - but only in the numbers like 0,8 >>> 0.8 but vector arrays and simple integers are ignored.
                                The hash should now eval OK... 😒

                                TIG

                                1 Reply Last reply Reply Quote 0
                                • OxerO Offline
                                  Oxer
                                  last edited by

                                  Hi TIG,
                                  I done that you say me but it continue with the same Ruby Console Error, after try all possibilities (uninstall all plugins, delete SU preferences, etc) and to see that the problem persisted I have opted for delete SU2013 folder, all preferences (SU preferences, all plugins preferences, hide files related) and reinstall SU and the plugins and voila! now all work fine.
                                  I had time to try more things, perhaps it were a corrupt preference file or a conflict with other plugin, I don't know, mystery! ❓

                                  "The result is the end what is important is the process" by Oxer
                                  [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

                                  1 Reply Last reply Reply Quote 0
                                  • JBJDesignsJ Offline
                                    JBJDesigns
                                    last edited by

                                    @krisidious said:

                                    Gravity might be your problem. Try setting it lower... Somewhere earlier in these posts there are default settings.

                                    The gravity settings were set at various levels, i.e., low, mid and high values. The leaves still droop. Also, I haven't heard anything back about the leaves turning up in every new project I start as components. Although it is now easier to "delete" the leaved and purge from materials, it's still annoying. Great idea, but I'd love to see further refinements.

                                    ...you send them to school, you give them books, and they eat the pages...

                                    1 Reply Last reply Reply Quote 0
                                    • A Offline
                                      ayarriquitukis
                                      last edited by

                                      i fix a problem with the alpha img i can use in sketchup 2014... if you want tell me ... "for search a way to upload my new files"excuse me for the bad english....

                                      1 Reply Last reply Reply Quote 0
                                      • J Offline
                                        Jorgensen
                                        last edited by

                                        When I press SHIFT+CLICK, I get the attaced errors.

                                        Does anyone know if I can fix this?

                                        Thanks 😄
                                        Jorgensen


                                        Capture.JPG

                                        sketchup pro 2016 16.1.1449 64 bit | windows 10 pro | i7-3770k @3.5 GHz | 16gb ram | gtx 780 ti / gtx 980 ti | nvidia driver 368.39

                                        1 Reply Last reply Reply Quote 0
                                        • J Offline
                                          Jorgensen
                                          last edited by

                                          I made second instance of Sketchup, copied my model to the new file, and then Ivy works.

                                          Strange - my project file must miss someting that Ivy needs... does anyone have an idea to what that could be?

                                          Thanks

                                          sketchup pro 2016 16.1.1449 64 bit | windows 10 pro | i7-3770k @3.5 GHz | 16gb ram | gtx 780 ti / gtx 980 ti | nvidia driver 368.39

                                          1 Reply Last reply Reply Quote 0
                                          • cottyC Offline
                                            cotty
                                            last edited by

                                            From your screenshot: material named "ivy_stem". I don't know that plugin, but maybe you purged it away?

                                            my SketchUp gallery

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 33
                                            • 34
                                            • 35
                                            • 36
                                            • 37
                                            • 35 / 37
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement