This is probably obvious, and I'll sound like a toolbox for asking, but have you enabled the global supersampling in the RTT options dialog? Under Projection Settings there is an "options" button. Click that, then see the Global Supersampler setting. Is it set to "none"? Click "Setup" and enable the Global SS. You can even…
Ok. So i write a simple script. And it's works, but unfortunately only once. Second time you use it script jumps to the end part and invoke previously selected components. And i can't understand why ? Can someone please help with it.import maya.cmds as mc # this script creates 3 selection sets with preselected components#…
there are many ways to instance geometry and other elements in maya. you can instance as many objects as you want. and you can instance geometry to particles. just to give you a few ideas. the easiest is to set instance in the duplicate object options…
don't know if this works out of the box, just typed it down using some of my codes as a reference, maybe i missed something. I can't test it now, i'm on a mac :D you can of course extend that to open the program like you already did, if the window is not found etc. i'm using global variables to get the string to the…
you could try using gmatch, strcmp, or match instead of the == operator if you use one of the string comparison functions it can handle that a bit more robustly. https://download.autodesk.com/global/docs/maya2014/en_us/Commands/gmatch.html https://download.autodesk.com/global/docs/maya2014/en_us/Commands/strcmp.html…
google for Global Refund. Basically you ask at the shop for a Global refund form to be filled out, if the price is over a certain amount (e.g. 75 euros for europe). This form is valid, I think 3 months. Then when you leave you get a customs stamp on the form and you can claim a good part of the sales tax back at a special…
I haven't used Handplane, but global maps are like normal maps, but from a 'global' or 'object' perspective if that makes sense. I googled to find some exlanations between the two and the first entry was from this very site: http://wiki.polycount.com/NormalMap/#Tangent-Space_vs._Object-Space You should be rendering…
Global warming is very real, but like everyone else has said it has nothing to do with earthquakes. Global warming and global cooling happens over thousands of years. One of the current theory's is; in the future enough of the water on the planet will melt causing a change in the oceans currents, causing the weather to…
Sure, the rci variable holding rolloutCreator instance stays in the local scope - but that's not what I'm talking about, have you looked inside the script? The rolloutCreator cobbles together the pieces of string you give it and finally calls execute on the resulting string - and of course, execute ONLY works in global…
local and global variable... a local variable inside the scope of the ( ) they're in while global variable can be accessed anytime. I suggest to stick with local as much as you can. ie:(local test)print test this will give an undefined error as the variable test is not defined outside the ()(local testprint test) works…