by date
Update: Max2Ctor 1.0.1
Update: Max2Ctor 1.0.1
| Name: | Ryan Mounts | |
|---|---|---|
| Date Posted: | Jan 24, 2008 | |
| Rating: | 4.5 out of 5 | |
| Public: | YES | |
| Comments: | YES | |
| RSS Feed: | or Subscribe with . | |
| Profile Page: | View profile page for Ryan Mounts |
Blog post
The Max2Ctor macroscript for 3dsmax users has been updated and can be found at the following link:
Max2Ctor.zip
(Thanks to Orion for hosting this!)
None of the core functionality of Max2Ctor has changed... the code is now more robust, a minor bug was fixed (it would crash if a Multi/Sub-object did not have a material for each face ID of the object it was applied to), the default save folder is no longer the "Constructor\scenes" folder but the last folder you used, and an export feedback dialog was added.
Now after the scene is exported you will see a list of warnings to provide feedback on where problem areas might be in your scene. None of the warnings will keep the scene from exporting, but if you encounter problems in Constructor, you might go back and try to fix the warnings and re-export.
If you have previously installed Max2Ctor, simply save the new Macro_Max2Ctor.mcr file over the old one. Restart 3dsmax and click the Max2Ctor button. The floating dialog should read "Max2Ctor 1.0.1" at the top. If it doesn't, max is using an old copy saved somewhere else. Right-click the Max2Ctor button and select "Edit Macro Script". Look at the path in the window title bar. Track that file down in explorer and replace it with the new one. That should be it!
Max2Ctor.zip
(Thanks to Orion for hosting this!)
None of the core functionality of Max2Ctor has changed... the code is now more robust, a minor bug was fixed (it would crash if a Multi/Sub-object did not have a material for each face ID of the object it was applied to), the default save folder is no longer the "Constructor\scenes" folder but the last folder you used, and an export feedback dialog was added.
Now after the scene is exported you will see a list of warnings to provide feedback on where problem areas might be in your scene. None of the warnings will keep the scene from exporting, but if you encounter problems in Constructor, you might go back and try to fix the warnings and re-export.
If you have previously installed Max2Ctor, simply save the new Macro_Max2Ctor.mcr file over the old one. Restart 3dsmax and click the Max2Ctor button. The floating dialog should read "Max2Ctor 1.0.1" at the top. If it doesn't, max is using an old copy saved somewhere else. Right-click the Max2Ctor button and select "Edit Macro Script". Look at the path in the window title bar. Track that file down in explorer and replace it with the new one. That should be it!
Recent Blog Posts
| List: | 07/16/08 - Resource: Ambient Occlusion for TGEA Interiors 07/11/08 - Resource: Ambient Occlusion for TGE Interiors 06/25/08 - Native Ambient Occlusion for Interiors in TGE 06/17/08 - Custom Lightmaps for TGEA Interiors 04/03/08 - Add Custom Lightmaps to Interiors 01/24/08 - Update: Max2Ctor 1.0.1 01/10/08 - Tutorial: Export 3dsmax directly to Constructor 01/09/08 - Free Resource for 3dsmax Users |
|---|
Submit your own resources!| H.W. Kim (Jan 26, 2008 at 01:49 GMT) Resource Rating: 4 |
Thank you. =)
| UZON (Jan 26, 2008 at 14:09 GMT) |
| Petteri Huttunen (Feb 12, 2008 at 12:56 GMT) |
for k = 1 to 3 do
(
uv = polyop.getMapVert geometry[i] chan mapverts[k]
U[k] = (width/32.0)*uv[1]
-- V-coordinate is mirrored because 3dsmax defines texture origin in upper left (DirectX)
-- while Constructor defines texture origin in lower left (OpenGL)
V[k] = (width/32.0)*(1-uv[2])
)
...which makes texture mapping break when using textures that are not squares, like 512x256. This is fixed by changing width to height on the line that assigns V[k]:
V[k] = (height/32.0)*(1-uv[2])
| Ryan Mounts (Feb 25, 2008 at 18:24 GMT) |
| Lorne McIntosh (Apr 06, 2008 at 04:54 GMT) |
| Ryan Mounts (Aug 21, 2008 at 15:34 GMT) |
You must be a member and be logged in to either append comments or rate this resource.


4.5 out of 5


