3ds Max | Tutorials

FaceFX Facial Animation Plugin Tutorial for 3ds Max

54 votes

An introduction to the 2010 FaceFX Exporter for 3ds Max. Importing and Exporting bone poses, generating an animation, and importing it onto a character.

Free Video Tutorials!

87 votes
GavinB from CGTalk has generously provided the following free maxscript video tutorials. You'll need the TechSmith codec in order to view the videos... View the original cgtalk discussion thread here...

Get list of all subfolders

1 vote

-- How to get list of all sub folders in special path --

function GetAllSubDirs_fn MyDirectory =
(
temp = #();
s = 1;
folders = getDirectories (MyDirectory + "/*");
t = folders.count;
while s < t do
(
for i = s to t do (temp = getDirectories (folders[i]+"*");
for j = 1 to temp.count do folders[folders.count+1] = temp[j] );
s = t;
t = folders.count;
)
sort folders
return folders;
)
-- call the function whit a folder path --

GetAllSubDirs_fn("D:")

Get your lost dialogs back

How to "Relax" while preserving the volume...

2 votes

It's just a small tip :

We often use the standard "relax tool" or "relax modifier"  that always shrinks the objects...

How to build and destroy a procedural Wall

19 votes

in this tutorial we will create and destroy a procedural wall in 3dsMAX using Standard Geometries, SpaceWarps and ParticleFlow without scripting tecniques. We will also use the plug-in ParicleActionsPlus wich gives a good control on particles positioning. Lastly we will use collisions to make fly the bricks of the wall. This tutorial will take more or less 45 minutes for an intermediate level of difficulty

How to create a realtime feather system with ParticleFlow

54 votes

this is a very optimized solution to drive the behavior of particles by the deformation of a surface without to use script or complex rigs, this system can be useful not only to animate but just to model objects that have a large number of elements like tiles on a roof or to drive fractured objects to follow a deforming surface and so on, if you like this please let me know so I will produce more tutorials about the various implementations of this system

How to create a self-updating Max Script or Macro Script

17 votes
How to create a self-updating Max Script or Macro Script

**DISCLAIMER:

How to create new toolbar with scripts

0 votes

You can study here how to use your scripts from a customized toolbar for a faster workflow. I use 3ds max 2016 for this tutorial.

How to install my scripts in 3ds max

0 votes

Hello everybody,

In this tutorial I show how I install my max scripts in 3ds max.

Wish you a nice day :)

Syndicate content