Alembic for 3dsMax

alembic_logo

3dsMax gets alembic support in 2015 extension 1. A bit late to the party but this is kinda awesome. Animated 3d models and simulations can now be passed from 3dsMax to Fusion or nuke or Maya or …

Chronosculpt

A time based sculpting package for fixing simulation or adjusting alembic files

https://www.lightwave3d.com/chronosculpt/

Exocortex Crate

exocortex crate . A is fully featured cross platform Alembic plugin and its Free …

It was  $399 for 3dsmax but the company has just change to a open source and support model. It has a ton of extra features over the autodesk version, and you can get it by simply entering your email for the download link.

If your up for it heres a link to the github

Other options

There are 2 other options for alembic.io .

Quick setup proxy and overscan sizes with my 3dsMax Camera resolution tool

Frankly the default 3dsMax render settings bug me. They don’t deal with modern cameras. The proxy settings are hard coded and can’t be changed. There’s no easy way to create over-scanned frame without a calculator. So I’ve written my own tool to fix these problems and you can download it for free. If you want to know more read my article on basic camera maths in 3dsmax

Check out the installation instructions here.

Continue reading

How to quickly locate those pesky 3dsmax settings and folders

Max uses settings and folders tucked away in various windows locations. Sometimes it can be a little tricky to track things down, and even navigating the windows explorer can be tedious if the file is buried in a deep folder structure.

Typing this code into the maxScript Listener will open the Windows Explorer at the folder containing the 3dsMax.ini file.

shellLaunch ( GetDir #maxData )

(note: you can inspect backup and restore 3dsMax.ini settings with this MAXScript)
Continue reading

Selectively backup and restore 3dsMax.ini settings with my new tool

Selectively backup and restore 3dsMax.ini settings with my new tool .
It’s part of my scriptpack . Check out the installation instructions here.

IniFileBrowserDialogClick on a item in the tree. Use the ‘Save Settings’ button to backup that sections settings.

Use the ‘Load Settings’ button to import saved settings from a file. This will over right the current 3dsMax settings.

Use the ‘explore 3dsMax.ini location’ button to open the Windows Explorer at the folder.

Note: You could also type this code into the MAXScript Listener

shellLaunch ( GetDir #maxData )

There’s some more info on the GetDir function in this post.

currentdefaults.ini

A bunch of settings are base on class ids ( long hexadecimal numbers  ).

For example 0x795c4168 0x669a1835 is the Radiosity setting for Advanced lighting there’s more in docs.autodesk.com Market-Specific Defaults

Dumb max tip of the day : lost time slider

Max_time_slider

Arg I lost the time slider, it took me 15mins to find it again… deadline panic..

It seems to happen when opening the mini curve editor and switch to the dope sheet.

To recover the time slider go into the menus

  • Customize > SHOW UI
  • tick on track bar
  • Lastly click on the ‘mini curve editor’ button twice. ( far left on the time ruler )

 

There’s a few MaxScript commands that many help.

Open the MAXScript listener and type

timeslider.setvisible = true

if you lost the trackbar as well, then use

trackbar.visible = true.