Talon: C# isn't all that different imho. Especially if you have a background in C or Javascript. I always thought of it as a type-safe version of Javascript. Granted, some of the LINQ and Lambda syntax can be a bit daunting, but you get used to it. Speed-wise, uscript scripts compile to a mono/.NET assembly, and so do the…
Hi all! I want to make a script in Maya for switching Select surface objects command. Now i have two separate scripts for this: setObjectPianckMask "Surface" true; and setObjectPickMask "Surface" false; How to combine them into one so that modes can be switched at the press of a button?
You could force the Camera perspective to 'Top' so the amount of 'shot' vertices would not be an issue, in some scripts, I noticed a nasty habit of Max shooting through the surface of the mesh and onto other assets in the scene. I remember some guy in Tech Talk topic (the pinned topic up top) made a Fracture/Vornoi scrip…
Ok I have the script basically where I want it, but I have to work on the timing a bit. Apparently viewports don't like to switch from one view to another instantly. With that said, I think some people might be opposed to having controls cut and their viewport move around for a split second. Although it would take longer…
Pior requested this a while back and figured it was a good way to get me to learn photoshop scripting. What it does? Saves a PSD with a time stamp (DD-MM-YYYY HH-MM AM or PM). As of right now, the script just saves from where the original PSD sits. Stuff to work on: - Implement a check to see if the document has been…
Hi all! I want to make a script in Maya for switching Select surface objects command. Now i have two separate scripts for this: setObjectPianckMask "Surface" true; and setObjectPickMask "Surface" false; How to combine them into one so that modes can be switched at the press of a button?
Hey guys, Anyone know how to add new custom script hotkeys to Maya via python or MEL? I'm not sure what to look for. With pymel I'm trying nameCommand() but it doesn't seem to be adding to the list in the hotkey editor.
Hey everyone, I toyed around with and learned a bit about java scripting for photoshop in the past couple of days in an attempt to automate some of my workflow here at work, especially when tweaking diffuse, spec, and normal maps all day >< I think they are in a state where I can post them now. Rhinokey is hosting since my…
I tried few for scripting. GPT was best for MXS and by "best" I mean least time needed to fix its code. It's really nice for formulas, general algorithms in natural language or small isolated chunks of code, but trying to use it for complete script (especially something complex) is unreliable. Sometimes it will work out of…
@throttlekitty I believe the issue you are running into is due to: proc tkPerformCrease() being a local procedure as opposed to a global procedure. On Maya startup and initialization, Maya will parse all scripts located in the environment variable script paths (located via default internal vars and supplemented in your…