Hi, so I created this code which executes fine in the script edtior, it toggles the checker map on/off each time you run the script in the UV editor. //This works fine int $uvToggleChecker = !$uvToggleChecker; if ($uvToggleChecker == 1) { print ("UV checker map turned on."); } else if ($uvToggleChecker == 0) { print ("UV…
The branch hasn't been updated, yet the script is working fine for me in CC. Perhaps it was a bug in CC that has been patched? Anyways, great script mediochrea! It fills a need that no other software does as efficiently or quick. The other scripts out there that try to do similar, are painstakingly slow and require frame…
Just wanted to share a simple scripted for quickly baking and exporting animations in Maya. There's quite a few clicks to go through the process, even more so if there is no proper layering for meshes etc, but with this script only one is needed!select `ls -typ joint`;BakeSimulation;select -tgl `ls -typ…
UPDATE: Just found a bug in 2010 where the edges selected in max weren't the edges being cut by Roadkill. I've updated the script on the site so if you were having weird edge selection issues under max 2010 that should fix it. Hi Guys, Ages back I wrote a script to bridge the gap between max and roadkill. I've updated it…
The idea is to have your script create a script and then run it. I do this pretty often with Custom Attributes. I'm not really sure how to explain better than that, but here's another example script that uses a spinner to generate the specified number of buttons. http://dl.dropbox.com/u/2904948/Tutorials/DynamicUISpinner.ms
I tried both typing "Roadkill" and "roadkill" and have the script installed both in C:\Documents and Settings\Administrator\My Documents\maya\2009-x64\scripts and C:\Documents and Settings\Administrator\My Documents\maya\scripts... I'm running Maya 2009 x64 btw... Any other suggestions?
I'm trying to create a script that will take a random selection of objects, and organize them into 3 "piles" it should be fairly simple, and I'm sure I'm just about there... but when I try to execute it I get an error message, it reads: "//Error: No object matches name: " Anyone have an idea what's wrong? This is only my…
Eh all, So, my knowledge with mel scripting is very limited but I figured out the basics of the script at the bottom of this link http://ndhaussy.free.fr/maya_object_spreading/ where Nicolas shows how to spread using constraints. So I type the command spreadObjectsOnSurface ("objectB", "objectA", 20) and it works as…
I've been actively coding again, writing tools for my students and fellow professionals and have several new FREE scripts for Maya that I think people will find useful, if not fun. I will post separately for each script, apologies in advance if this looks like spam, it's not. Tools aren't any good if they aren't being used…
Hey guys, I'm curious if anyone has experienced this problem I'm having right now. I'm really novice to scripting, I'm hoping there's something really obvious that I'm missing. I'll try to start by explaining the new problem I'm having, and then the original thought process for my solution. The new problem: The script I…