Tommy L Posted January 13, 2011 Share Posted January 13, 2011 I have about 2000 objects that I need to move in an elegant, controllable way. Not accurate, just controllable. How can I assign one particle to each object and then use particle flow or forces to move the objects? Link to comment Share on other sites More sharing options...
Tommy L Posted January 13, 2011 Author Share Posted January 13, 2011 Or Im over thinking this.... How can I make a whole bunch of objects move away from one object? Link to comment Share on other sites More sharing options...
Stephen Thomas Posted January 14, 2011 Share Posted January 14, 2011 Maybe look at creating a crowd system? Link to comment Share on other sites More sharing options...
pipjor Posted January 14, 2011 Share Posted January 14, 2011 http://www.redgiantsoftware.com/products/all/trapcode-form/ Link to comment Share on other sites More sharing options...
luthias42 Posted January 16, 2011 Share Posted January 16, 2011 if you know how to use particle flow you can animate the objects fairly easily as particles the biggest thing is to make sure that you name all the objects something simple like "piece##" no spaces or symbols in the name just an alpha name and then numbers 1-whatever. then in the birth script copy and paste the following script making sure that you change the word name to the name of your objects. on ChannelsUsed pCont do ( pCont.useAge = true pCont.useTM = true pCont.useShape = true ) on Init pCont do ( global ChunksArray = $NAME* as array ) on Proceed pCont do ( t = pCont.getTimeStart() as float if t ( NumChunks = ChunksArray.count for i = 1 to NumChunks do ( pCont.AddParticle() pCont.particleIndex = pCont.NumParticles() pCont.particleAge = 0 pCont.particleTM = ChunksArray.transform pCont.particleShape = ChunksArray.mesh ) ) ) on Release pCont do ( ) Link to comment Share on other sites More sharing options...
Tommy L Posted January 16, 2011 Author Share Posted January 16, 2011 Thanks William, super helpful. I'll try it out. And welcome to the boards! Link to comment Share on other sites More sharing options...
Tommy L Posted March 22, 2011 Author Share Posted March 22, 2011 Does anyone know if there's an option to control scale by mapping in particles? I have purchased MultiScatter, but the damn thing takes 24 hrs to arrive. For a download? C'mon (thru Visual Dynamics). So Im doing this thing in particles. If I can control scale then Ive got it cracked. Link to comment Share on other sites More sharing options...
alias_marks Posted March 22, 2011 Share Posted March 22, 2011 Really it's taking that long for MultiScatter? I got a download within an hour of purchase just last week... edit: I didn't get an email from them till later, but right after my purchase I could log into the website and download. end edit: Funny you ask this question as I've been doing the exact same thing this week. I found that using vray distance texture as a mask element in multiscatter, you could control where things showed up pretty well. Just create geometry as needed and place it where I don't want multi texture go go. i.e. use the foundation of a building as the object for vraydistance texture, place as mask for multiscatter on your grass plain and plants won't grow where the foundation is Link to comment Share on other sites More sharing options...
Tommy L Posted March 22, 2011 Author Share Posted March 22, 2011 Thanks Micheal, but as I dont have multi scatter til tomorrow.... Im using particle flow to scatter objects over another object. I have unwrapped the distribution object and used a map to dictate where my scatter objects will appear. The inverted distribution map becomes the 'scale' map. So where there are less objects they are bigger. This works great, cos you can tweak the values in the material editor and have object distribution react in real time. But without having a scale controller in particles the operation is on hold til tomorrow. Link to comment Share on other sites More sharing options...
alias_marks Posted March 22, 2011 Share Posted March 22, 2011 always more than 20 ways to skin a cat Sounds like a solid methd, best of luck! M- Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now