Tagged 'mouse'

Move/Clone to cursor

3 votes

Hi, this is simple script which move or clone selected objects to surface under cursor. You can bind it to any hotkey (I usualy use Alt+S and Alt+C).

1.0.1

- initial releas

1.0.2

- settings can be binded to hotkey

- possibility to turn on random rotation in Z axis

1.0.3

- multiple object selection can be treated as object list, so in clone mode random object will be selected

- cloned objects can be automaticly moved to active layer

 

Move/Clone to cursor

0 votes

Hi, this is simple script which move or clone selected objects to surface under cursor. You can bind it to any hotkey (I usualy use Alt+S and Alt+C). In this current version additional settings are avaiable only by hidden function call ObjToCursorSettings() which can be called via MaxScript Listener.

paint cloner

16 votes

the purpose of this script is to place objects by painting with mouse. like advanced painter, but advanced painter uses max's paint interface which is somewhat slow on complex models. my script paints objects over the active grid. after you place objects, you can put them down to ground, apply random transforms, apply random materials (all these things with other scripts). so you can quickly make landscapes.

autoVP - MouseOver Viewport Switcher

50 votes

autoVP automatically switches the active viewport to the viewport the mouse is hovering over. This allows you to interact much faster with manipulators in that viewport, select objects, get properties, etc.

Script can be used 'as is' as well as be accessed by scripters (e.g. the function to get the viewport under the mouse is exposed).

Mouse Loop-Ring

26 votes

The script for selection PolyLoop with mouse double click.
For selection PolyRing hold down the shift key.

The second click should be done with a small delay.

*Notes

Now supported with Edit_Poly_Modifier.

CopyClick

12 votes

-- Copy by Click
-- V1.0

-- How it works?
-- 1. Select objects
-- 2. Execute CopybyClick
-- 3. Click to make a instance of selection
-- 4. ESC or rightclick to cancel

------------------------ THE CODE ------------------------

macroScript CopybyClick
category:"AGGTools"
buttonText:"CopybyClick"
tooltip:"Copy by Click"

(

fn CopyClick =
try
(
maxOps.cloneNodes $ cloneType:#instance newNodes:&nnl
select nnl
Sel=selection
p = point pos:Sel.center
p.pos.z = 0
ClickPos = pickPoint snap:#2D ()
ArrayFiltroGroupHead = #()

Syndicate content