Show messages:
1-14
15-23
From: Michael Gibson
Hi Steve, I'm glad you got a way that will work for the time being.
So the test I was asking about was actually: What happens if you create a model just totally inside of trueSpace instead of importing it from MoI, where that model has some hierarchy in it (for example a parent box with 2 child spheres, or whatever).
If you export that model from trueSpace into an OBJ file, and then exit trueSpace, then start it up again and read the OBJ file back in, do you end up with the hierarchy preserved?
If you do, then it means that trueSpace is encoding its hierarchy somehow in the OBJ file and if that is the case then I could do it too.
- Michael
From: Ecuadorian
Danperk, how did you create the awesome animated GIF in the first post? It looks very clean and noise-free.
From: danperk (SBEECH)
Hi Ecuadorian,
I used Camtasia 5. Not sure what version they are selling
now but Version 5 worked well so I haven't upgraded.
Hi Michael,
I tried the round trip by exporting a parent with 2 sibling children.
On import the group reverted to 3 siblings.
My main problem is I'm using Moi for scene creation, not just for
creating objects. It works so well for this, I prefer to do everything
except textures and render/animation in Moi. The situation is that
after the texturing stage if a client decides to make changes to
the scene layout, (they always do), then I need my hierarchy to
be easy to re-arrange/edit on the textured version.
That is why I'm interest other poly software with good import choices
that Moi hopefully will support in the future.
From: Brian (BWTR)
Carrara works very well with many of the file types exported by MoI, including 3dm
Certainly it is good value and easy to learn but it comes with so much "built in" operations that other high priced apps often charge huge plugin money for.
Brian
From: Michael Gibson
Hi Steve, thanks for running that test. So it looks like OBJ will not work for preserving hierarchies into trueSpace (and probably other programs also).
> That is why I'm interest other poly software with
> good import choices that Moi hopefully will support in the future.
Yeah I will probably be able to focus on this early in the v3 timeframe.
File formats tend to be a finicky area of work, some programs are pretty sensitive to a variety of factors.
It's just not such a great area to tinker with to a very large degree right near the end of a beta period, just too much possibility of problems being introduced.
- Michael
From: danperk (SBEECH)
Hi Brian,
> Carrara works very well with many of the file types exported by MoI, including 3dm
> Certainly it is good value and easy to learn but it comes with so much "built in" operations that other high priced apps often charge huge plugin money for.
I have Carrara Pro 6.2 which I got free from 3DArtist Magazine. It's OK and I like to have lots of options for file conversion etc.,
but I think that for most people, myself included, we tend to judge/compare software with what we know and are used to, so for
me Carrara is just not a good fit. In what I have learned by researching 3D programs available out there, I think Modo has the
most to offer for my requirements. But thanks for the suggestion!!
Hi Michael,
> So it looks like OBJ will not work for preserving hierarchies into trueSpace (and probably other programs also).
Yeah it looks that way, still in most regards OBJ export allows me to get the data across and the rest is just optimizing my set-up
to make working in my poly prog. as painless as possible.
I did some testing with Right Hemisphere Deep View, (an excellent free utility), to see some results of Moi's different exports.
Now I realize these results are dependent on Deep View's import parser but interesting anyway. You can view the scene tree or
a parts list, (which seems to relate to the Object settings in Moi.) I won't list all my result but FBX was interesting in that the parts
were arranged as instances.
> File formats tend to be a finicky area of work, some programs are pretty sensitive to a variety of factors.
> It's just not such a great area to tinker with to a very large degree right near the end of a beta period, just too much possibility of problems being introduced.
As I said I wanted this more as a discussion, to pick your brain, not to try and squeeze more things into Ver. 2. :)
Thanks for the script, and your patience!! :)
Image Attachments:
DV.jpg
From: Mindset (IGNITER)
Hello Micheal, et. al.
Might there be some modification that would respect the 'order of selection' when using the "object name separator" script?
http://moi3d.com/forum/index.php?webtag=MOI&msg=3114.5
Thanks!
Moi Bueno
MindSet
From: Michael Gibson
Hi MindSet,
re:
> Might there be some modification that would respect the 'order of selection' when using the "object name separator" script?
Try this one:
script:var Objects = moi.geometryDatabase.getObjects(); Objects.sortBySelectionOrder(); var Names = new Object(); for ( var i = 0; i < Objects.length; ++i ) { var Obj = Objects.item(i); if ( Obj.name == '' ) { continue; } if ( !Names[Obj.name] ) { Names[Obj.name] = new Array(); } Names[Obj.name].push( Obj ); } for ( var Name in Names ) { if ( Names[Name].length == 1 ) { continue; } for ( var i = 0; i < Names[Name].length; ++i ) { Names[Name][i].name = Name + '_' + (i+1); } }
- Michael
From: Mindset (IGNITER)
Terrificâť—
I left-padded the number with zeros to 2 digits Took me hours
script: /*!Obj-Name + Number */ var numb = 0 ; var Objects = moi.geometryDatabase.getObjects(); Objects.sortBySelectionOrder(); var Names = new Object(); for ( var i = 0; i < Objects.length; ++i ) { var Obj = Objects.item(i); if ( Obj.name == '' ) { continue; } if ( !Names[Obj.name] ) { Names[Obj.name] = new Array(); } Names[Obj.name].push( Obj ); } for ( var Name in Names ) { if ( Names[Name].length == 1 ) { continue; } for ( var i = 0; i < Names[Name].length; ++i ) { numb = (i+1); numb = numb.toString();while (numb.length < 2) numb = "0" + numb; Names[Name][i].name = Name + '_' + numb; } }
Moi Bueno
MindSet
Show messages:
1-14
15-23