[ QUOTE ] The Maya scripts look like they include character tools, at least there's an mpLipSyncExport.mel. [/ QUOTE ] hehe, yeah, they also reference a plugin that isnt included with the SDK, i spent a good day going through the mel scripts line by line trying to get them to work
Listen to Marine, he knows his comics. Some goodies I've been reading lately, besides the ones Marine mentioned, thanks to zcultfm: Ares Astonishing X-men (written by that Firefly guy) Civil War Conan (Darkhorse) House of M Ultimate Extinction Uncanny X-men Wolverine X-Factor X-Men X-Men: Deadly Genesis Son of M Outsiders…
Hello. I get this weird black lines in the far of the render in UDK and also when I do render in maya, but it doesn't show in the maya viewport. I overlaped almost all the faces on top of each other using a mel script, can this be the problem? thanks in advance for any help.
Hi, My Name Is Karim Ahmed I am A 3D Character Rigger With 9 Years Experience in Character Rigs With All of Its Types (Humanoid - Cartoon - Machines - Hybrid - Cars -Animals). I also can Do Cloth Sim and import it to any software using Alembic Extension, and I can create Cloth For Games or Cinematics Directly inside Unreal…
Hello guys in polycount. I heard that you guys can help me with this problem. Basically, I am trying to compile an animated smd file and this is the qc file. $modelname "props_volcano/sliding_metaldoor.mdl" $cdmaterials "models/props_volcano" $body sliding_metaldoor "sliding_metaldoor_ref.smd” $sequence idle…
Don't want to hijack your thread, just that also I found another tool for Maya that mimics Max's shell modifier, check this out and see what you think: http://hugobozzshih007.blogspot.com/2010/12/my-mel-tools-shell-modifier.html
This should work. Go into face selection mode of the object you want to bevel, then run the first 3 lines, then do your bevel and run the last two. MEL Script. SelectAll; string $faces[] = `ls -sl`; select -cl; select $faces; InvertSelection;
I've been a fan of Machinae Supremacy for a few years now- I love their rendition of the Bubble Bobble theme tune and I turn to You (dunno if that is the name of the track but Mel C did a version when she went all punk n stuff)
After looking at the MEL for that script, my only hunch is that somehow you're selecting the transform node instead of the shape node somehow, but that's a shot in the dark. When in doubt with Maya, either delete or rename your prefs folder and restart. That will force Maya to re-create the default preferences.
Nah "Snap together" -tool got it's own area on the MM. Move A to B is a MEL-script:string $sel[] = `ls -sl`;string $sel1 = $sel[0];string $sel2 = $sel[1];parentConstraint $sel2 $sel1;string $constraint = $sel1+"_parentConstraint1";delete $constraint; (And it operates on meshes)