Amazing videos. Very informative and somehow rather entertaining.
@Headedtothetop11118 жыл бұрын
Hey bro thanks for the tutorial. I really do I appreciate you taking time out to make these vids for the public. in the future can you please have your volume higher? Thanks again
@mikhailkonstantin99276 жыл бұрын
wow ! what a speach :)
@farzinmoayed27188 жыл бұрын
thanx ian . more more tutorials PLZ
@prodamDivan5 жыл бұрын
Thanks for the great lesson !!
@kioly_ah2 жыл бұрын
learnt a lot!
@7lionAnimation4 жыл бұрын
welldone... thanks for the tutorial
@ahahlex8 жыл бұрын
I don't why but the spring doesn't really work for me, when I add dumping I can see that it slows down the process but there is no oscillation... maya 2017 windows. maybe I missed something but your tuto is pretty clear...
@ianwaters60358 жыл бұрын
Hey Alexandre, Is your playback speed set to play every frame? I'm not sure but it might help? Otherwise please send a scene and I'll take a look. Best, Ian
@SHADRAGZ7 жыл бұрын
How can I move or scale the whole mash?
@AlicjaKraft8 жыл бұрын
For Windows...) are there changes in workflow ? I don't get why my color node doesn't work and also copying MMB+alt the follow obj. doesn't work. thanks
@ianwaters60358 жыл бұрын
Are you using Update 1+ ?
@AlicjaKraft8 жыл бұрын
I did the update and it works perfectly, thank you
@lukegreek40388 жыл бұрын
Great Tutorial Ian! I am struggling with the MMB+Alt combo as well though. The problem being that even when I duplicate and connect the offset1 node to the Color node, it doesn't connect to the Mash_Offset output in any way. The only connection is to the Mash_Color node through the Falloff Out. Have you found a work around for this? Thank you for your time.
@ianwaters60358 жыл бұрын
Are you in 2017 Update 1 or above?
@lukegreek40388 жыл бұрын
I believe this is just the base 2017 version. I will update and try again, thank you for the guidance!
@lukegreek40388 жыл бұрын
I have been hunting for update one for hours now, any idea on where to find it? I have searched the Autodesk website and desktop app to no avail.
@Vadim-tc5hk8 жыл бұрын
hi ian looks like that the middle mouse drag then Alt to duplicate the falloff shape is not working on windows. thanks
@ianwaters60358 жыл бұрын
Just to check, are you using 2017 Update 1?
@Vadim-tc5hk8 жыл бұрын
yes
@ianwaters60358 жыл бұрын
I'll look into it, thanks for letting me know.
@ianwaters60358 жыл бұрын
Thanks Nadim, must be a Mac/PC thing.
@Kirin1227 жыл бұрын
Can you bake those movements from the mash to objects?
@ianwaters60356 жыл бұрын
Yes, use the utility Bake MASH Instancer to Objects under MASH > Utilities.
@pentecostesish4 жыл бұрын
thanks for this
@heweiping1238 жыл бұрын
I want to know how to constrain random rotation to 90 degree increments in MASH.
@ianwaters60358 жыл бұрын
The Python node, easy: import openMASH import random #initialise the MASH network data md = openMASH.MASHData(thisNode) #this is how to get the frame number frame = md.getFrame() #and this gets the number of objects in the network count = md.count() random.seed(0) #add the index to the Y position for i in range(count): multiplier = random.randint(0,6) rot = 90*multiplier md.outRotation[i].y=rot #tell MASH to write the network data md.setData()