This will cause an error if you only have one object selected and posibly if you have nothing selected when you run the script. With only one object selected $ returns a single object. But with multiple objects selected it returns an array. In these cases its better to use 'selection' This always returns an array, even…
Thanks for all of the feedback guys! I will be revising that turbosmooth script within the next couple of weeks sometime. When everyone started giving me feedback and critiques... I borderline had no clue what people were talking about. lol... So over the weekend I poured over more tutorials and a lot of what everyone is…
The Bigley Bake Tools is going on a hiatus. Honestly it was way more than I could handle. It is really hard to get somewhere without someone to sit down and ask questions. I find myself pouring over google searches way late into the night just to realize I suck at understanding basic scripting concepts. I think quite…
Thanks A-N-P! :D So I sorta took upon myself to make a script to speed my friend up. It was originally going to be a turbosmooth toggle but it expanded from there. Here was what my early tests were just to figure out some of the properties and functions. This one turns the turbosmooth modifier off.macroScript…
Hey guys! I am pretty stuck. I am 95% there on this script and the padding is giving me an issue. Was hoping someone could help tell me why I am having this problem. Problem: After my first render, if I change the padding, it doesn't render out the new padding amount. I am not really sure why. It seemed to update in the…
I was able to get back to it last night... and I made the toggle. This will toggle the turbosmooths in a selection on or offfor i in $ do if isproperty i #turbosmooth == true do if i.modifiers[#turbosmooth].enabled == on then i.modifiers[#turbosmooth].enabled = off else i.modifiers[#turbosmooth].enabled = on The script…
Got a question for you guys watching. Is it possible to make a script that executes when I CTRL+SHIFT+Mouse Click in editable poly? Something like this: If in editable poly and CTRL SHIFT Click do ( _______________) or like this: while in editable poly if CTRL+SHIFT+CLICK do( ______________)