Tagged 'hierarchy'

Outliner

756 votes

 The Outliner 2.0 is a fast and easy to use scene management tool. It has a wide range of features, including selecting, hiding, freezing, linking and grouping objects in the "Hierarchy Mode". In the "Layer Mode" you can organize your scene by dragging&dropping objects from one layer to the other. What's more, the Outliner offers support for nested layers, to manage scenes more efficiently. The interface is nimble enough to keep it open constantly.

Superflow Original

283 votes

Superflow
----------------------------------------------------------------------------------------------------------------------------------------------------------------

V-MOTION - Superflow Original

----------------------------------------------------------------------------------------------------------------------------------------------------------------
Developed by Ian Clemmer http://www.ianclemmer.com

Programmed by Panayot Karabakalov a.k.a. Anubis http://www.scriptspot.com/users/anubis

Batch Exporter

6 votes

Helper Manager

7 votes

A support panel containing many methods for adding point or dummy helpers to the scene, as well as options for baking, constraining, linking, duplicating existing hierarchies using helpers, or replacing them with a Bones System.

pXTreeMotion

53 votes

This is a scripted utility plugin to animate a hierarchy or set of hierarchies with only ONE CLICK!, to simulate smooth and soft tree and plants natural movement.


Superflow Elements

7 votes

Superflow

----------------------------------------------------------------------------------------------------------------------------------------------------------------

V-MOTION - SF Elements // Superflow Motion Designer Toolkit // www.v-motion.co

----------------------------------------------------------------------------------------------------------------------------------------------------------------

Developed by:

Grab Hierarchy

27 votes

Selecting whole heirarchy by picking one belonging object.
Similar to Sergo's "Pick Hierarchy" script but simplified code.

Quick Parent Link

4 votes

Quick Parent Link is a script to allow you to quickly pick a chain of obects to set them into a parent/child hierarchy. It works a little more efficiently than the native Select and Link tool (which requires you to click child, drag to parent, let go, then select that parent as a child again and drag to its parent, etc).

Mindflow Parentize

47 votes

----------------------------------------------------------------------------------------------------------------------------------------------------------------

V-MOTION - Mindflow Parentize // Automatic Hierarchy Chain Generator

----------------------------------------------------------------------------------------------------------------------------------------------------------------

Developed by Ian Clemmer http://www.ianclemmer.com

Programmed by Panayot Karabakalov a.k.a. Anubis http://www.scriptspot.com/users/anubis

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