Message 1 of 3
Random move Z

Not applicable
10-06-2008
09:30 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to move a objects in a selection group a random amount in Z. Here's what I have:
Utility mov_z "move Z" -- My second script!
(
button movz "distribute Z"
on movz pressed do
(
ace = selectionSets
for i = 1 to ace.count do
(
zed = random -10 10: see
move ace
)
)
)
Instead of moving objects independently it goes through and moves the lot of them. Help. Thanks
Utility mov_z "move Z" -- My second script!
(
button movz "distribute Z"
on movz pressed do
(
ace = selectionSets
for i = 1 to ace.count do
(
zed = random -10 10: see
move ace
)
)
)
Instead of moving objects independently it goes through and moves the lot of them. Help. Thanks