Okay, NWMax seems to work fine with other models, but when I try to import a model with a skinmesh (such as my fish, shadow, etc.) it throws an exception.
MAXScript Rollout Handler Exception pops up:
--Unknown property: "animations" in undefined
Also a script window pops up named aurora_fn_import.ms
This has a lot of scripting, but the error code at the bottom lists:
li=3745 co=1 offset=211237 INS (SR+LF)
Here is some of the code surrounding the line mentioned above:
3725 if (importAnims) then
3726 (
3727 if lastFrame > 0 then (
3728 animationRange = (interval 0 lastFrame)
3729 ) else (
3730 animationRange = (interval 0 60)
3731 )
3732 ) else (
3733 lastFrame = animationRange.end
3734 )
3735 )
3736
3737 ) -- end mdl_pos case statement
3738 ) -- end while not eof
3739 --lastFrame += animGap
3740 )
3741 catch
3742 (
3743 --messageBox ("NWN importer Script Error reading mdl file at line:" + lineNum as string)
3744 close mdlStream
3745 throw
3746 )
3747 close mdlStream
3748 nx_FlushBuffer()
3749 if showprogress then
3750 (
3751 progressEnd()
3752 )
3753 )
Thanks for any help.
JFK