Tagged 'rigging'

AutoBones: New auto-rigging tool for 3ds Max

2 votes

Hello, my name is Kevin Mackey.

During my time as an animator and technical artist, I have developed a tool called AutoBones, a system for
1) quickly creating character rigs using the Max bones system
2) allowing each chain of bones to be keyframed as a single object, and
3) switching seamlessly between IK and FK animation.

I have run a beta test in order to confirm a high degree of performance and stability, and am now making a commercial version available, including a 30-day free trial.

Shater AutoRig

2 votes

Shater Autorig is humanoid feature Animation rig creator and olso Games simple rig creator, with flexible and easy to use animation tools for production (unlimited pose manger/keying tools/reseting/ik-fk/stretching/squashing/bending limbs and spine)


check youtube vids down

Rot Follow Movement

2 votes

This tool add a Float Script on the selected Object. It forces the object to always rotate (or lookat) following the movement of the Master. You don't have to rotate the object by yourself, only to translate the master in Autokey.

 

 

Massfx Rope Creator

1 vote

Massfx Rope Creator 3ds max plugin

The fastest solution to create ropes for your Massfx simulation which allows you to create a rope between 2 objects automatically!

Harry's Proxy Creator

1 vote

This script is very similar to a script Jason Schleifer wrote from Maya, it allows you to split a predefined object into several segments based on the transforms of special cutter objects, these segments can then be linked back into a skeleton hierarchy. The advantage of displaying segmented geometry in the viewport rather than the skinned mesh is that you get faster playback speeds.

When you evaluate this script it create a new "Category" in the "Customize User Interface" window called "Harry's Proxy Creator" where you'll find the tool

Angle Limiter

1 vote

This tool creates a 'Helper' that has a limited angle, with reference to other 'bone'.

Travel Distance

1 vote

a Maxscript Controller to measure and expose the distance traveled by an object.
1: select an object, a point or something else
2: run the script
3: in the modify panel, clic on Pick Reference button and pick the object you want to mesure travel distance.

Now, if you animate the object in autokey, you will see the value changing.
You can use it in wire Parameter or in expressions or script controllers

Easy Spring Controller Tool

1 vote

I made this script last year , but Now i made it more usable for everyone as (Spring Controller Tool)
features:
1) Add Spring Controller to hierarchy of bones,Objects or etc...
2) Add Spring To Selection Objects (its Require The Object Hierarchy Links)
3) Add A Modifier Controller For Each Spring Controller
4) Change The Spring Values One By One
5) Change Spring Values Of Massive Group Of Objects In Hierarchy At Once , Using Offset
6) 2 Default Presets To Change Spring Values Quikly
7) Run Timeline After Every Change To Spring Value (For Catch Spring And Play Fast After)

Link Array (directional)

-14 votes

This code simply allows a users to link a selection of objects based on the order of selection. You can use either 0 or 1 to define the direction. That allows you to link everything forwards or backwards. Rather simple code but I figured someone would find use for it.

clearlistener()
 
fn fnLinkArray arr dir:0= (
 
	if dir != 0 then (
		reverseArr = for i = arr.count to 1 by -1 collect arr[i]
		arr = reverseArr	
	)
 
	for o in arr do o.parent = undefined
 
	for i = 1 to (arr.count-1) do
	(
		child = arr[i]
		parent = arr[i+1]
		child.parent = parent
Syndicate content