i tried to open the Qtown script. i get these errors. official documentation says: "Run the script by executing “icQTown” (without quotes) in the script editor." i did that but doesnt work. funny how it works on my other machine without problems. using maya 2018 btw // Error: polyRotateUVs (90 * $randTopRot); // // Error:…
howdy folks. Im following the Gnomon Puppet Rig Tutorials, everything was goin greating until i got to the arm. He splits the bones of the rig evenely in the rig but doesnt show how he did it.... So naturally I do a search for a splitbon.mel, find one, doest work. I get an error that says // Error: Wrong number of…
The "wrong number of arguments" error means that the script is expecting you to pass one or more variables to the script command. That probably means that you were typing splitbone; (or whatever the command is) instead of splitbone "variable1" "variable2"; or whatever. So saving script in different folders or restarting…
global means it's accessible outside of the script. proc means it's a procedure. int means it returns an integer. splitbone is the name of the procedure. You are interested in the parts after the "(" which should be something like (int myInt, string myString).
well. i gave up on that shitty script. i searched bone splitting originally because i had prior experience to using such a tool in lightwave, but apparently i should have jsut looked for joint splitting. i downloaded a joint splitting script and it works just fine. thanks anyway
oh thanks! hmm. i wonder what other information it wanted.. i opened the .mel file in editplus before i gave up, just to see what the term was after global proc... it says global proc int splitbone . i have a litttttle bit of experience writing very basic mel scripts so i searched for this because it is my understanding…