hmmm there is something important to understand here. "Autosave" is not a simple script doing a ctrl+S for you every X minutes. Interesting point of the "Save" features is about keeping history of your saved work. Then yes, to save automatically your file, but not on the same file. Imagine Photoshp crashes saving your…
Hey everyone! I just got into scripting a couple of days ago and I want to start tracking my progress and potentially get some pointers and some feedback from more advanced scripters. I'm still very new and my stuff is super simple, so don't get your hopes up for anything awesome. Here's the first script that I made. I got…
It's a native look-and-feel UI with a 3D viewport embedded ( which you can disable completely so no extra rendering time will be used in case you want to execute just the HM2NM tool, etc ). I changed the right-collapsible window by floating/docking windows though... in that way you can move the windows with more freedom or…
This script is requested here. What the script do: Select objects, Run script and pick an object in the scene. Selected objects will be moved in the Layer of picked object. Video demonstration Download.
I have seen scripts that do exactly this on scriptspot and elsewhere on the web related results (using google) http://www.scriptspot.com/bobo/mxs2/cfc/ http://www.scriptspot.com/3ds-max/scripts/camera-based-face-selection http://72.27.230.245/3ds-max/scripts/camerafacecounter The way pretty much all of them work is by…
Great stuff, many thanks eevans! This is a well designed tool, normal maps are much better quality than nvidia and any other tools/plugins. The only downside is having to run a script, meaning you can't do anything else until you close it. Anyway, this is going to be used from now on so thanks once again for the link and…
mainly workflow for me - even as a novice i can script and bend blender in ways i did never manage with max or maya, making for a very smooth way of modeling that is my own, not a bunch of cobbled together scripts i do not really understand the inner workings of (double-tap and long/short-press hotkeys, all sorts of crazy…
Assigning selected objects to a layer is annoying in 2016 and beyond. I did a listener and created a macroscript and set it to a shortcut. That way I can just hit the shortcut and click on the layer. This native function I couldn't really find in the dialog -_-. But you can build a script. Something I ran into though. It…
I use this script and put it in my quad menu (you can put it on toolbar too of course); macroScript ResetXForm category:"TP" buttonText:"Reset XForm" toolTip:"Reset XForm" ( on isEnabled do return (selection.count != 0) on execute do ( for node in selection do if (isValidNode(node)) then ResetXForm node ) ) But half the…