sketchucation logo sketchucation
    • Login
    โ„น๏ธ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Import OBJ with Materials v2.1 20131118

    Scheduled Pinned Locked Moved Plugins
    279 Posts 87 Posters 378.6k Views 87 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.
    • TIGT Offline
      TIG Moderator
      last edited by

      That is an important point. โ˜€
      SketchUp's older version of Ruby on PCs doesn't care for non-ASCII characters in folder/file-paths...
      Making it return an incorrect 'false' when testing that such a file exist?...
      Many plugins can fail because of this. ๐Ÿ˜’

      TIG

      1 Reply Last reply Reply Quote 0
      • Z Offline
        Zacchia
        last edited by

        ...mmmh. Not finished yet... I corrected the path but still not loading, here the path, whats wrong?: F:\Bruno_Zacchia_Kopie_H\Designmoebel_Objekte\Eigenes\Pflanzen
        Loading it from desktop it works.

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

          In the Ruby Console, test this code:
          File.exist?('F:\Bruno_Zacchia_Kopie_H\Designmoebel_Objekte\Eigenes\Pflanzen')
          ???
          Perhaps add the OBJ file name on the end and retest !?
          It should return 'true' if the file exists.
          Test it with a non-existent name and you get 'false' ?

          Are you sure there are not any non-ASCII characters in this path [including the file names themselves].
          I guess you are German ?
          So the the 'oe' can't be a ล“, o+umlaut [รถ] etc
          Also watch out for รŸ etc...
          If it works from your Desktop it suggests so character issue still exists in this new path...

          Also check for texture names [subfolder with OBJ/MTL] these can't have non-ASCII characters in them and the MTL specified file paths must match the .png/.jpg names exactly...

          TIG

          1 Reply Last reply Reply Quote 0
          • Z Offline
            Zacchia
            last edited by

            Hi TIG
            I think your importer is OK, It works today, maybe it was something wrong with material folders or the original files. Sorry about trouble and thanks fpr feedback.

            1 Reply Last reply Reply Quote 0
            • DDrockD Offline
              DDrock
              last edited by

              Hi TID.. to where i can download your plugin FixtreeD ?? i still cant fix empty texture on my mesh from treeD.. thanks

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

                My FixTreeD.rb is in this post: http://sketchucation.com/forums/viewtopic.php?p=306529#p306529

                TIG

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

                  Hi there,

                  I'm having trouble getting the materials to import with the model. The mtl file is in the same folder as the obj file, but it seems to replace the materials with random colours. I did tests with free models, but they're from designconnected which seems like a reputable site so I'm not sure what's stopping the import correctly. This is the chest which is supposed to be wood/iron.

                  skittles.JPG

                  Any ideas what might be causing this?

                  Regards

                  Jack

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

                    Without seeing the relevant OBJ and MTL how could I say ๐Ÿ˜’
                    Can you ZIP them and attach them to a post or PM them ?

                    It's likely something wrong with the MTL etc - both files are human-readable so you should be able to see issues ?
                    ๐Ÿ˜•

                    TIG

                    1 Reply Last reply Reply Quote 0
                    • Z Offline
                      Zylescozar19
                      last edited by

                      Hi TIG, this is a AWESOME PLUG-IN!
                      But when i try to import this simple cube (see image)
                      there is no object that have been imported.

                      Thanks.


                      CUBE.png


                      1.png


                      2.png


                      3.png


                      4.png

                      1 Reply Last reply Reply Quote 0
                      • Z Offline
                        Zylescozar19
                        last edited by

                        Hi TIG. this is a AWESOME PLUG-IN!

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

                          What units are you using?
                          If the imported object is very tiny geometry can't be created.
                          So a number like 0.1 might be very tiny in mm but x1000 using m !
                          The radiused edges look very faceted ?
                          Try using meters ?
                          The imported object might then be enormous, but can be scaled.
                          Can you attach the OBJ/MTL to a post or a PM ?

                          TIG

                          1 Reply Last reply Reply Quote 0
                          • Z Offline
                            Zylescozar19
                            last edited by

                            I did try all of the units.

                            Ok ill send you the copy of obj. file.
                            BTW im using WINDOWS 7 ULTIMATE - 32 BIT

                            Thanks TIG! ๐Ÿ˜›

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

                              OK

                              I now have your ZIP file by PM for this OBJ.

                              I note that there are no materials specified in the OBJ, by referencing an associated MTL file ?

                              Also the 'object' seems to have some tiny facets.
                              I think it was exported in 'mm' - but there's no units info in the header !
                              It does now import OK in 'mm'.

                              There are 68,000 lines of code in the OBJ file - which seems a lot for such a simple thing !

                              BUT... you have discovered a typo in my script's code.

                              This typo causes a failure - with a message in Ruby Console - but only when a particular rare combination of definitions in the OBJ file occur - that is when there are negative [-ve] values for 'f' face vertices specification: most OBJ's make +ve values to count the vertices when referring to v/vt/vn down the list etc... but -ve ones are allowed to count up the list... and my code did try to trap for that possibility... however, with certain combos of v/vt/vn it does fail because of this typo with the 'vn' counter...
                              However, your OBJ file's format is odder still in that it makes 26 subgroups [one for each external cube] and it restarts the vertex negative count back up the file for each subgroup it defines, rather than counting through the the whole file - making it awkward to 'reverse-engineer' it to the more normal [logical] downward count which always runs from the top and is always ignoring any subgroups - so '1' is always the very first vertex defined and any grouping is ignored - but it is trappable...

                              Also I note that many faces are 'reversed' in this OBJ's code.
                              These need fixing manually...

                              Frankly you could more easily make and assemble these cubes in SketchUp - there are only 3 variants for corners, centrally and mid-side, with 3d rotation etc and suitable face coloring [which is entirely missing from this OBJ anyway]...

                              However, you reported issue has made me make the script work better for these -ve values ๐Ÿ˜‰

                              I have fixed the script and an update will be published shortly... ๐Ÿค“


                              Capture.PNG

                              TIG

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

                                There is an update available: http://sketchucation.com/forums/viewtopic.php?p=172790#p172790
                                or http://sketchucation.com/resources/pluginstore?pln=obj_importer
                                Previously unpublished:
                                v2.0 20130321 'Blender-quads' now import as two tri-facets. The OBJ file must contain header-text "# Blender" or similar.
                                Recently fixed:
                                v2.1 20131118 Import of OBJ files using a -ve counter for 'f' vertices within sub-groups fixed. View now refreshes with each group completion.

                                TIG

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

                                  Hi,

                                  Thanks for your job, really apreciate.

                                  there is something i missunderstood.

                                  1/ I open a .vray.mat in 3DS
                                  2/ I export in obj format, wih mat as you can see on the picture.

                                  http://img600.imageshack.us/img600/38/jmqm.jpg

                                  3/ i put in the export folder, the map furnished with the .vray.max.

                                  4/ i import in SU using your plugin, i choose cm

                                  The problem is i don't have any mat with the model.

                                  Could you help me?

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

                                    When you make a .OBJ file it should also make a similarly named .MTL file which defines the materials.
                                    These materials are referenced in the header of the OBJ and can be plain colors with optional transparency or with mapped textures.
                                    The textures are defined with a reference to an imgae file.
                                    Most OBJ exporters put these in a folder - named something like Textures or OBJName_Textures...

                                    The normal rule is that the OBJ and MTL files go in a common folder - the OBJ's code typically looks for the MTL file 'by name only' [with no 'path'] and therefore expects it to be in the same folder as the OBJ... The 'Texture' folder goes in the same folder as the OBJ and MTL because the MTL's code looks for "Textures/ImageName.png" etc.

                                    If the OBJ can find the MTL then no materials are made/used.
                                    If the MTL can't find an image file then the a plain-color is used instead.

                                    You can read an OBj or MTL file with a plain-text-editor...

                                    So see what the OBJ and MTL files are expecting and ensure that you keep all of the exported parts together: that is - the matching OBJ + MTL + ImageFilesInsideTextureFolder

                                    TIG

                                    1 Reply Last reply Reply Quote 0
                                    • C Offline
                                      chandlerplusbass
                                      last edited by

                                      For some reason the file will not show the textures. I checked the .mtl and everything seems fine, and the textures are where they need to be. But when I import the file, all the textures are replaced with a matte grey. Is there anyway I can get this to show the textures? It's working fine in blender but not SketchUp.

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

                                        Without seeing the files who can say ? ๐Ÿ˜’

                                        Are the faces made 'inside out' ?
                                        So you are seeing their backsides ?
                                        Are you importing 'with textures' - there are different options...

                                        Can you ZIP and attach or PM+attach the files ๐Ÿ˜•

                                        TIG

                                        1 Reply Last reply Reply Quote 0
                                        • X Offline
                                          XAIR134
                                          last edited by

                                          Some textures are not loading, the model had 26,000 lines though. Is that usual?

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

                                            Who knows? ๐Ÿ˜’
                                            What's the object?
                                            What are the Textures? ๐Ÿ˜ฎ
                                            Are ALL Texture files listed in the MTL sub-file also in the Textures sub-folder ? ๐Ÿ˜ฒ
                                            If it's a manageable size when made into a ZIP can you attach it to a post or PM it ?... โ˜€

                                            It might be an issue with the files themselves rather than the plugin ???

                                            TIG

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 7
                                            • 8
                                            • 9
                                            • 10
                                            • 11
                                            • 12
                                            • 13
                                            • 14
                                            • 9 / 14
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement