Been using it for 4-5 years now, still the best free tool available
@TimDownsAnimation10 ай бұрын
This is a gift that keeps giving. Can't thank you enough, man. Saved me so much time and sanity
@brandonlava107 жыл бұрын
This is super useful, thanks for the script and the super detailed video!
@TristanG10.000 Жыл бұрын
This is insane.
@davidmonteiro68226 жыл бұрын
Very nice ! Could you use this to lets say. you have a control shape and want to drive several blendshapes with that 1 control?
@NurshatMZ2 жыл бұрын
Great! You're a genius.🙏 Made my job easier.
@张迁-g1z3 жыл бұрын
// Warning: Line 3592.59 : Redeclaration of variable "$dv" shadows previous declaration at line 3591. Previous value will be overwritten by explicit initializer. //
@romaintruchard29397 жыл бұрын
Awesome work !
@niranjanbharadwaj19497 жыл бұрын
Hey can you make a script for renaming Hierachy of Joints. I need it in Python only No pyMel Please upload a video for that. Its most necessory for me. I am trying to make a one but when we take a duplicate of the hierarchy. The script will through an error "More than one objects having the Name"
@bosspanda4857 жыл бұрын
Not going to do that, but as a quick tip, you can probably fix your problem by using the 'renameChildren' flag on your duplicate command. You can also try having your code find the object based on its 'long name', either by assembling the string yourself (group|object) or using var=ls(sl=True, long=True).
@iamshrimpcat7 жыл бұрын
This is awesome. Definitely going to check this out. Lol at the guy asking for you to make him a script.
@artificialhype75157 жыл бұрын
and a video xD
@ericbochat7 жыл бұрын
to ease things out there is a scrip by Comet that you can find on his website (for free)
@salvadoralmanza10306 жыл бұрын
Hi Alex! Just trying to install the scritp but i get this error: // Error: line 4999: Cannot find procedure "colorInputWidgetGrp". // Can you help me solve this issue? Thanks a lot for creating the tool, it looks great!
@bosspanda4856 жыл бұрын
colorInputWidgetGrp should be a built-in maya procedure. My first guess would be that your maya version doesn't have it, but it's possible some other script is overwriting that procedure. What maya version are you using? I've tested it on 2016+
@salvadoralmanza10306 жыл бұрын
Hi! I'm using 2014 version. Could be possible that doesn't work because of that.
@vovetskiy7 жыл бұрын
very cool tools
@Ruyanisme6 жыл бұрын
aww so goood!
@emanuelcs22885 жыл бұрын
// Warning: float $dv = `floatField -q -v $dvFields[$activeTabIndex]`; // // Warning: Line 3592.59 : Redeclaration of variable "$dv" shadows previous declaration at line 3591. Previous value will be overwritten by explicit initializer. //
@tanbu36064 жыл бұрын
Hello,Is the problem solved?
3 жыл бұрын
@@tanbu3606 this is because you are trying to execute the all code, just put the .mel in user/maya/20**/scripts/am_dock.mel and execute am_dock()
@smsbabu143 Жыл бұрын
Hi Alex! Just trying to install the scrip but I get this error, Could you please help on this // Warning: float $dv = `floatField -q -v $dvFields[$activeTabIndex]`; // // Warning: Line 3593.59 : Redeclaration of variable "$dv" shadows previous declaration at line 3592. Previous value will be overwritten by explicit initializer. //
@bosspanda485 Жыл бұрын
There's a duplicate line in the code that causes the warning, but it doesn't prevent the UI from loading. Ensure you're following the installation instructions in the description of the video. If you just copy the text to the script editor and run it, you'd also need to add am_dock; at the end to actually call the procedure. Maya calls it automatically when you run the script externally. I've updated the file to remove the extra line of code causing the warning.