The method you are considering would be really slow and difficult. I think the best method is to print both lists at the same time and then combine them. See below. ( --CREATE A DATA STRUCT struct gameObject ( name = "", positions = #(), rotations = #() ) --SAVE THE CURRENT SELECTION selObjects =…
Mishra teh pownz: woah you're online PR JeSS 0 2: i kno PR JeSS 0 2: i got a new comp. Mishra teh pownz: good, what kind? PR JeSS 0 2: dell PR JeSS 0 2: lol PR JeSS 0 2: who's brokenllamas? Mishra teh pownz: huh Mishra teh pownz: it's a non-functioning mountain animal from central america i think PR JeSS 0 2: rite Mishra…
Hey people, with some help from the ZBrushCentral community (in particular Mark "TVeyes" that helped me with the most difficult code parts) I managed to perfect the code. In the previous version the WrapMode was not changed for the hardcoded Smooth and Masking brushes: in with this new version the Smooth and Masking…
Necro bump. Just went back and updated this script so it'd work correctly with newer versions of maya: //RepeatLast Hotkeyer v2if (`window -exists rlHotkey`) deleteUI rlHotkey;window -wh 250 50 -mxb 0 -title "RepeatLast Hotkeyer" rlHotkey;frameLayout -bs "etchedOut" -w 200 -cll 0 -l "Enter Hotkey";formLayout selForm;…
you are right about the mdl files holding the reference, its the qc file that does that you dont need to have the qc file on the dota folder, its used just to compile the file and after that it has no need to exist =] thats why you dont find it on dota files if you compile your file and replace another one on the dota2…
For those that use Maya, here's a script I wrote a while back that does the same thing: //name: QuadConnect//by: PolyhertzstartQuadConnect;global proc startQuadConnect (){global string $curObj[], $vrts2Tweak[];string $origList[];$origList = `ls -sl -fl`;$edjList = `filterExpand -ex 1 -sm 32`;polySplitRing -stp 2 -div…
mm, sorry, I meant X-Form (in 3dsmax) not x normals. Starting to wear out :) I've got it positioned right, just getting weird lighting at the moment. I really appreciate the thorough answers. I guess I'm a bit confused about the steering wheel bit yet. I modelled my truck around your car. So the wheels and steering wheel…
Script it ;) I wrote a simple Set of Macros to store and restore viewport-positions (specifically for 2010, though I use it with 2008, since it stores all views, not only four...not the Shading-Mode, though)...just a little alteration to store the FoV...there...no guarantees...not tested ;) Macroscript P_Top_ViewCategory:…
Took the xyzWindow script for Maya posted here the other day and updated it to be a full transform type-in window that mimics Max. Maybe someone here can get some use out of it (or give some thoughts on improving it): ////////////////////////////////////////////////////title: xyzWindow//Version: 2.0//Date:…
Hey guys, after seeing a thread about revealing the input object for a Boolean in Maya, i realised that Maya had procedural Booleans under the hood (athough not 100% bulletproof). So I went to work making a script that i would love to use, and that others could use. This script doesn't add any new functionality to Maya it…