3ds Max | Scripts

Pathstribute

-13 votes

Pathstribute is a 3ds Max plugin which gives users the ability to distribute a mesh along any number of splines. Users are given a variety of controls to adjust the number of clones, the placement of the copies, scale, and the rotation. All controls support animation.

Download now!

Maxscript for Github

0 votes

A little tool for commit and push your repository directly from 3dsMax using Maxscript and command line

Fibonacci

2 votes

Fibonacci

Simple script to see Fibonacci and Golden points in viewport

Path Node Offset

23 votes

Max script for constraining a node to a path and duplicating as much as you want along the path with proper offset values.

This tool has all the option for path constraint. Later the constraint can be collapsed.

Vertex pos to CSV

0 votes

-- built by bernardo amorim
-- help at bernardo dot amorim at gmail dot com
-- hugs bern
-- 2009

MacroScript vertexToCSV category:"bernielomax CSV"
(

out_filename= getSaveFileName caption:"SAVE WHERE" initialDir:"$export" filename:"VertexPos.csv"

out_file = createFile out_filename

for obj in geometry do (
tmesh = snapshotAsMesh obj
format "Obj Name:%\n" obj.name to:out_file

format "X Pos, Y Pos, Z Pos\n" to:out_file

for v = 1 to getNumVerts tmesh do

(
vert = getVert tmesh v
format "%, %, %\n" vert.x vert.y vert.z to:out_file
)
delete tmesh
)

FumeFX ModernUI

0 votes

FumeFX ModernUI is a tool for 3ds Max that helps reducing repetitive tasks when simulating with FumeFX. It has a clear interface (therefore the name) and comes with an easy to use installer.

Vertex normals selector

1 vote

Function Sculptor

3 votes

zOffset = x^2-y^2

Function Sculptor is a scripted plugin that deforms meshes, polys or splines according to an arbitrary, user-input function. This allows easy creation of an endless variety of smooth, precisely curved surfaces. It also enables the mathematically precise curving of splines for extrusions, path-deforms and lofts.

It uses the world-x, y, and z coordinates of points to displace those points in world-z.

Editable spline shape with 2 sub-splines, before and after sculpt:

Encrypt Script Utility

1 vote

Scripted Utility to quickly encrypt a maxscript using the following method:

Explode Spline Elements

0 votes

A small tool for quickly exploding all selected splines and shapes elements into separate objects. Support for turning on and off Undo for speeding up the process.

Syndicate content