3ds Max | Tutorials

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:")

3DS Max extract 2D sections from 3D objects

0 votes

Here we learn how to use the section tool found in the Shapes category to create 2D sections out of 3D objects and export them to other programs like Autocad.

How to use MySQL Connector in 3ds Max using .NET

18 votes

Maxscript tutorial: Print vs Format

2 votes

I just finalized a Maxscript tutorial showing the difference between Print and Format command when exporting to external files, check it out.

 

3dsMax Monday Movie #65: MaxScript Basics

26 votes

Text copied from author (Bluesummers) website - http://www.mrbluesummers.com ... Click the tutorial link below for more details and video transcription.

WPF in 3ds Max

55 votes

James Haywood covers the basics of integrating WPF inside 3ds Max 2011 using dotNet 3.5

Quoted from article:
"Some time ago I wanted to start getting my head around WPF, and especially how I could integrate tools made with WPF into Max. So I decided to start with something simple, which was to take an existing script that displays a progress bar using standard Max controls and convert it to WPF.

Scripted controllers and object references in 3dsmax R6

13 votes

BackBurner monitor undocumented cmd switches

67 votes

In case you run multiple backburner managers (e.g. on notebook at several places or using local manager and manager in office) it is good idea to have icons for automatic connecting monitor to the different manager hosts.

I've found two working command line parameters for monitor.exe:

monitor -a
monitor -mservername

First one turns "Auto connect" on. Second one sets manager hostname and connects to it. (Note: There is no space between -m and hostname or ip)

3DS Max Vray menus / quad menus disappeared fix

0 votes

In this video we will learn how to restore vray menus and quad menus that disappear sometimes. It's all done using the Maxscript Listener and one simple command that you type and run.

How To Make A Stretchable BoneChain In 3DS MAX

0 votes

In this tutorial I'll show you how to make a stretchable rig without using complex scripting.

Syndicate content