View Full Version : Help me convert from .max to .obj, please!
Francisthedude 12-30-2008, 08:21 AM Hello :-)
I need this 3D Studio Max object converted to something I can use in
Cinema 4D - I would be soooo glad and thankful, if someone would do this for me! I owe you one then. I'm a skilled After FX'er ex...
Link to the 3D Studio Max file, currently in .rar.
http://3dplanet.org/models/mercedes_s55/mercedes_s55_3dplanet.org.rar
If you are so kind to do this for me, you can mail me the converted items to anders@lilkaer.dk
Thankyou very much in advance,
and... Happy hollidays!
/Anders.
|
|
Insanto
01-01-2009, 05:33 AM
there prolly won't be n-e-body responding cuz this is srsly just a matter of select/file/export selected.. but i made a small script for that a while back wich should do the job just fine.
expfile= (maxFilePath + maxFileName)
rollout c4export "Custom Exporter"
(
editText fileName "FileName:" text: (getFilenameFile expfile) readOnly:true fieldWidth: 120 height:21 offset:[0,10] align:#left
checkbox customName "Custom Filename"
editText filePath "FilePath:" text: (getFilenamePath expfile) readOnly:true fieldWidth: 190 height:21 offset:[0,20] align:#left
checkbox customPath "Custom FilePath"
button porto "Export" width:75 height:23 offset:[0,15]
on customName changed theState do
(
if customName.checked == true do (
fileName.readOnly = false
fileName.text = ((getFilenameFile expfile) + "_" )
)
if customName.checked == false do (
fileName.readOnly = true
fileName.text = (getFilenameFile expfile) )
)
on customPath changed theState do
(
if customPath.checked == true do (
filePath.readOnly = false )
if customPath.checked == false do (
filePath.readOnly = true
filePath.text = (getFilenamePath expfile) )
)
on porto pressed do
(
if customName.checked == true and customPath.checked == true do (
exportFile (filePath.text + "/" + fileName.text + ".dae" ) selectedOnly:true using:ColladaExporter )
if customName.checked == true and customPath.checked == false do (
exportFile ((getFilenamePath expfile) + "/" + fileName.text + ".dae" ) selectedOnly:true using:ColladaExporter )
if customName.checked == false and customPath.checked == true do (
exportFile (filePath.text + "/" + (getFilenameFile expfile) + ".dae" ) selectedOnly:true using:ColladaExporter )
if customName.checked == false and customPath.checked == false do (
exportFile ((getFilenamePath expfile) + "/" + (getFilenameFile expfile) + ".dae" ) selectedOnly:true using:ColladaExporter )
--exportFile (GetDir #scene + "/" + fileName.text + ".dae" ) #noprompt selectedOnly:false using:DAE
)
)
createdialog c4export 264 175
just replace the ".dae" with ".obj" and (optionally) define an exporter to use "using:ColladaExporter" (if you are not sure wich one or if you shall define one just delete it).
CGTalk Moderation
01-01-2009, 05:33 AM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.
vBulletin v3.0.5, Copyright ©2000-2013, Jelsoft Enterprises Ltd.