Announcement

Collapse
No announcement yet.

Local Assign UVMap > Box > Fit to multiple opbjects of various sizes?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Local Assign UVMap > Box > Fit to multiple opbjects of various sizes?

    Hi all

    How can I assign a UVMap > Box > Fit to multiple objects at the same time. The objects are of different sizes and spacing. But when I select them all it just fits my UVMap over the lot. Is there a way to assign it locally instead of errr "globally"?

    Normally I would do it 1 by 1. But too many objects. Just want a "local" buton in UVMap like there is in rotate and move commands.

    Maybe some1 can do it with a maxscript one liner?
    Kind Regards,
    Morne

  • #2
    This adds a UVW Map on top of your currently selected objects and sets it to Box (which by default is fit to the object):
    Code:
    for o in selection do (addModifier o (UVWmap()); o.modifiers[1].maptype=4)
    It's not exactly what you are asking for (it's a bit harder than that), but the result should be the same

    Comment


    • #3
      thanks I'll give it a go
      Kind Regards,
      Morne

      Comment


      • #4
        You can also turn on "Use Pivot Points" at the top of the modifier stack and then apply the UVW.

        edit:Sorry that will only apply them locally and not allow you to fit per object.
        Last edited by tiw; 18-07-2011, 07:49 AM.

        Comment


        • #5
          Originally posted by Codi View Post
          This adds a UVW Map on top of your currently selected objects and sets it to Box (which by default is fit to the object):
          Code:
          for o in selection do (addModifier o (UVWmap()); o.modifiers[1].maptype=4)
          It's not exactly what you are asking for (it's a bit harder than that), but the result should be the same
          How would I make this work?
          Last edited by glorybound; 19-07-2011, 12:14 AM.
          Bobby Parker
          www.bobby-parker.com
          e-mail: info@bobby-parker.com
          phone: 2188206812

          My current hardware setup:
          • Ryzen 9 5900x CPU
          • 128gb Vengeance RGB Pro RAM
          • NVIDIA GeForce RTX 4090 X2
          • ​Windows 11 Pro

          Comment


          • #6
            yes it works great
            Kind Regards,
            Morne

            Comment


            • #7
              Good, glad it helped

              Comment


              • #8
                Hmm ok a bit of a twist. What if I have a bunch of objects of different sizes that have been attached to each other into one object. So 1 object with 200 elements. Detaching each one will take too long. Want to uv map box local to each element. How?
                Kind Regards,
                Morne

                Comment


                • #9
                  If the object is an editable mesh you can do it using "explode": Select the object and, under "Edit Geometry", set 180.0 to the explode angle amount, to "Object" and explode. Then you can apply the mapping and re-attach if needed.

                  No extra scripting needed

                  Comment


                  • #10
                    you see now

                    thanks for the tip
                    Kind Regards,
                    Morne

                    Comment


                    • #11
                      or object detacher from soulburn scripts
                      Dusan Bosnjak
                      http://www.dusanbosnjak.com/

                      Comment


                      • #12
                        how can I split an object that has mutlisubobject materials, into seperate objects, each material as a seperate object? Is there a quick way like with the explode 180 thing?

                        Is there a script available that will go through an entire scene, and split objects with mutlimaterial ID's into seperate objects?

                        nevermind, once I split them, the materials assigned are still mutlisubobject!
                        Last edited by Morne; 02-11-2011, 02:54 AM.
                        Kind Regards,
                        Morne

                        Comment


                        • #13
                          Have a search on scriptspot ...I saw exactly what you are looking for there a little while ago.

                          Comment

                          Working...