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

    MSPhysics 1.0.3 (16 October 2017)

    Scheduled Pinned Locked Moved Plugins
    926 Posts 171 Posters 883.1k 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.
    • F Offline
      faust07
      last edited by

      I found the solution: a value less than the length of the curve in the Controller field makes the object follow the path backwards. What would be cool if there was some kind of infinite loop function ...

      1 Reply Last reply Reply Quote 0
      • F Offline
        faust07
        last edited by

        Birdy on the new CurvyPiston Joint. Very easy to do! πŸ‘
        But how can I make the object following the curve more flexible and grabs not so hard around the corners?


        MSP_Orca08_01.gif

        1 Reply Last reply Reply Quote 0
        • R Offline
          Ralphxyz
          last edited by

          faust07, that is great, how much time did it take to do the bird flapping it's wings and following the path?

          1 Reply Last reply Reply Quote 0
          • ntxdaveN Offline
            ntxdave
            last edited by

            @ralphxyz said:

            faust07, that is great, how much time did it take to do the bird flapping it's wings and following the path?

            DITTO ❗

            1 Reply Last reply Reply Quote 0
            • F Offline
              faust07
              last edited by

              Thank you Ralph and Dave! But MSPhysics is great. First and foremost, Anton, who raised it to life.
              With MS Physics and the new Curvy Joints path following objects can be modelled in minutes.
              And the two wings to hang with Servo Joints on the bird's body, does not take long too. Experimenting to adjust speed, stroke rate, angle, etc. then I really enjoy.

              1 Reply Last reply Reply Quote 0
              • F Offline
                faust07
                last edited by

                A small inconsistency emitter concerning: some emitted objects appear extremely far away on the X-axis, so the viewport is temporarily empty, as long as these objects exist. This also happens with older models that have worked before version 0.8.0.

                1 Reply Last reply Reply Quote 0
                • R Offline
                  Ralphxyz
                  last edited by

                  Anton, I have tried the installer twice. It runs and Windows complains about it but I override it's objections and it seems to run fine, no errors reported, BUT no MSphysics folder is made in the Plugins folder.

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

                    Faust, I like your test with the birdy.

                    • To make the birdy travel an infinite time, enable looping in the Curvy Joint, and set controller value to some large value, like 1000000.
                    • I actually added the angular stiffness parameter to the curvy joint, but removed it before uploading it, as I thought it would be too much parameters. What you can do to reduce angular power is reduce the general joint stiffness, to 0.1 for instance. As well, you can make the curve smoother with the Fredo's Curvizard Plugin.
                    • And just as a reminder, curvy joints work best on iterative solver model, particularly 4 passes.; they are not as stable on exact solvers.

                    Ralph,
                    You have to run the installer as administrator. Furthermore ensure that the installation path is set to "C:\Users\Ralph\AppData\Roaming\SketchUp\SketchUp 2015\SketchUp\Plugins. By default, the installer installs the plugin into SU2016 folder.


                    Meanwhile, I want to present y'all one my latest masterpieces. Behold, the MSPhysics MIDI Piano!

                    Available at 3D Warehouse: https://3dwarehouse.sketchup.com/model.html?id=94df3cd9-3a96-4fb1-b4df-17705afc3511
                    Credits are listed in the model.
                    Enjoy!

                    1 Reply Last reply Reply Quote 0
                    • F Offline
                      faust07
                      last edited by

                      Fantastic! The unlimited possibilities of MSPhysics! Once again, thank you!
                      To learn piano or listen to the songs accurately, it is even very easy to reduce the playback speed. The top of it all would be if each user could even inserting MIDI files in the scripts of own cubes to play their own songs.

                      1 Reply Last reply Reply Quote 0
                      • F Offline
                        faust07
                        last edited by

                        CurvyPiston joints concerning:
                        It would be good, if we could control the speed of an object that is connected to a CurvyPiston joint with slider or script.
                        A short example would help very much.
                        Thanks in advance.

                        1 Reply Last reply Reply Quote 0
                        • R Offline
                          Ralphxyz
                          last edited by

                          I have a good install in C:\Users\Ralph\AppData\Roaming\SketchUp\SketchUp 2016\SketchUp\Plugins.

                          Sketchup starts with no complaints.

                          Now what do I do?

                          I do not see MSPhysics in my extensions list.

                          I copied it to my 2015 folder and now I see it in my Extensions list.

                          How do I get started?

                          I will back over this entire thread once again.

                          At least now I have a chance of doing something.

                          Thanks Anton for all of your help!!

                          1 Reply Last reply Reply Quote 0
                          • R Offline
                            Ralphxyz
                            last edited by

                            now how do I "open MSPhysics UI" I am trying to follow the scripting tutorial.

                            Ralph

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

                              @faust07 said:

                              It would be good, if we could control the speed of an object that is connected to a CurvyPiston joint with slider or script.

                              You can do it with script. Paste this code into the object connected to a CurvePiston joint.

                              
                              onStart {
                                @joint = this.get_connected_joints.grep(CurvyPiston).first
                              }
                              onUpdate {
                                if @joint
                                  @joint.rate = key('w') * 1 # some value; in this case we controll it with kry 'w'
                                end
                              }
                              
                              

                              Here is a link to all available functions in CurvyPiston: http://www.rubydoc.info/github/AntonSynytsia/MSPhysics/MSPhysics/CurvyPiston

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

                                Ralph I suggest starting from the basics. Here is the guide: https://github.com/AntonSynytsia/MSPhysics/wiki.
                                Its not done yet, but progress is being made.
                                To open the UI press on that button:

                                https://github.com/AntonSynytsia/MSPhysics/raw/master/Wiki-Images/toggle_ui.png

                                1 Reply Last reply Reply Quote 0
                                • R Offline
                                  Ralphxyz
                                  last edited by

                                  thanks Anton, I have not seen that menu bar.

                                  1 Reply Last reply Reply Quote 0
                                  • F Offline
                                    faust07
                                    last edited by

                                    First tests with the new renderer Indigo RT - Export Replay to SkIndigo works very well. Have only one question: How do I get emitter objects into the Indigo rendering process? These objects are not shown.

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

                                      Faust, it's good to know that it works. I'll see if there is anything I can do to get the emitter rendering in Indigo.

                                      1 Reply Last reply Reply Quote 0
                                      • jujuJ Offline
                                        juju
                                        last edited by

                                        @anton_s said:

                                        Faust, it's good to know that it works. I'll see if there is anything I can do to get the emitter rendering in Indigo.

                                        Be sure to liaise with "OnoSendai" and "Whaat" for assistance... πŸ‘

                                        Save the Earth, it's the only planet with chocolate.

                                        1 Reply Last reply Reply Quote 0
                                        • D Offline
                                          Dalton325
                                          last edited by

                                          Is there a manual for MSPhysics? For now, I'm just trying to make a simple animation with hinges, and it's doing all kinds of crazy things. I've found a couple of solutions through trial and error, but I'd love an instruction manual. Thanks.

                                          1 Reply Last reply Reply Quote 0
                                          • F Offline
                                            faust07
                                            last edited by

                                            Regarding rendering of MSPhysics animations: After further tests with Indigo is clear, the definition of new materials in MSPhysics scripts leads to termination of the rendering start and an error is indicated (test with MIDI-Studio, AntonS).
                                            Color changes of objects in scripts are not shown when rendering (test with Animated_colors, PituPhysics).

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 15
                                            • 16
                                            • 17
                                            • 18
                                            • 19
                                            • 46
                                            • 47
                                            • 17 / 47
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement