Results 1 to 10 of 16

Thread: Bluestreak JMS Exporter w/Region Support (MaxScript)

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #8
    TCTF Cult ****** bobbysoon's Avatar
    Join Date
    Nov 2007
    Location
    Mormon-occupied Caprica
    Posts
    239

    Re: [Maxscript] Bluestreak JMS Exporter w/Region Support

    [2 month bump] Sory, had to share
    Quote Originally Posted by CtrlAltDestroy View Post
    this edited version of TheGhost's Bluestreak JMS exporter fully supports regions
    No, actually it only supports face selection sets. I'm preferring SelectionSetArrays ("whole object" level), because they're still there after the topology is changed.
    This here code sets up face selections from object selections
    edit- added condition to check if named selection sets exist, and removed the format statement which i think caused Advancebo's broblem (see next post)
    Code:
    ssc=getNumNamedSelSets()
    if ssc>0 then
        for ssi=1 to ssc do
        (
            ssic=getNamedSelSetItemCount ssi
            for oi=1 to ssic do
            (
                o=getNamedSelSetItem ssi oi
                if (classof o.baseObject==Editable_mesh) then -- removed bug here
                    o.faces[getNamedSelSetName ssi]=o.faces
            )
        )
    It's like a bandaid. Better would be if the script checked for both - not that I don't apreciate you're making it possible for 3ds9 users like me to export regions. Happy belated +rep, btw
    I made a button of it by drag/dropping it from a new maxscript window to the toolbar, but it could also be pasted into the top of the exporter.
    maybe if the exporter gets another update, this or something that checks for both could be incorporated. I got some other minor improvements to add if that happens, like storing the filepath for quick re-exporting[/2 month bump]
    Last edited by bobbysoon; February 25th, 2009 at 04:31 AM. Reason: fixed a couple bugs
    Reply With Quote

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •