Hi there tigerheart! Interesting thread. It's been long time since I've touched something similar, but here it goes. There are some points to consider and obvious omissions in you script seen in last image you posted: 1. I don't see the script even working; there is no copy made for the other side. 2. There are no bone…
About using the tiny SSD for the OS and essential apps, you also need your working files on the faster drive otherwise you're subject to the slower larger drives seek time whenever you do anything. If all you're worried about is how fast the app boots, then it's going to a lot faster. however if all of your working files…
run this script in your maxscript listener (F11 - > new script -> paste -> file -> evaluate script ) ---------------------------------------------------------------------------------- Fix MAX's window positions-- version 2.0-- max version 6, 7, 8, 2008, 2009-- written by Joshua Newman-- www.joshuanewman.net-- written…
Cool, thanks for the effort! ArtStation just added the Embed Code feature which should make this process a lot easier, simply grab the block of code and add it to your site with your html editor. I updated the Getting Started tutorial with more details: http://www.marmoset.co/viewer/gettingstarted As for why you were…
Edit, after further testing this script seems like it was written a long time ago and needs an update. It ignores the existence of some of the context menus so it's probably not what you want. This script does what you want, but be warned it remaps all your context menus so you'll have to go in by hand and set them all up.…
I use this pattern: I wouldn't worry about being exact too much, unless you really need it. In either case a script would be the best way to go about doing this. It will be MUCH faster over the long run. EDIT: If you don't have a script another way to do this is find a single face that you can scale precisely (perhaps…
Well...Not sure if I should post this or not but it is something I've been working on and it's to HELP people with 3d/2d so here goes :D The last week or two I've been working on some Photoshop scripts to help speed up the tileable texture process. Mainly in the Multi-Layer offset department. So I made Layer Cake to help…
so basically you want to project a ray from the world origin through a vertex and move the vert to the intersection on a rotated plane? The word Grid threw me off. You mean a maya poly grid right? that should be quite simple to script. Would you like me to? Edit: Done, hope its what you wanted. select the grid/plane then…
Finally I Override 1/2/3/4/5 standard editpoly hotkeys with new macros Now hit 1 or 2/3/4/5 ==> go in vertex/edge/..() mode re-hit 1 or 2/3/4/5 ==> go in object mode and you can select another object! I have added a line, with "Max modify mode", like this, if your are not in "modify panel" when you select an object and hit…
I've looked into this a little bit, and the issue is with maxscript itself. The maxscript command used to delete layers doesn't trigger any callbacks that other scripts (i.e. the Outliner) can react to. So the Outliner can never be aware of layers being deleted. The integration of the Layer system with maxscript on the…