I haven’t read the thread so feel free to pay no attention if I’m way off base. Can’t you just render frames to an uncompressed AVI and then use a co…
Yup, my bad- I didn’t think about it correctly. In reality, there could be multiple hits but intersectRay() only returns the first hit with a face t…
You said in the first sentence “bounding box.” I assume you mean mesh? (if it is a bounding box, you can just test P coordinates against the bounding…
Ah, I didn’t know DataGrid was deprecated/superceded. Anyway, I’ve got the code working correctly with a DataGridView, so things are all peachy. Here…
Forgot to post this yesterday, sorry! We use it here and it is really great.
I’ve always have had lots of problems with skin wrap and scripting. I tried this in 2k8, doesn’t seem to work either. I think it is just broken.
LoneRobot: awww, i feel all warm and fuzzy inside after reading that… I wish he had never un-encrypted his script. I looked at the source and fo…
The fact that Max would take setuserprop $ “testProp” “8” getuserprop $ “testProp” and return 8 is understandable- setting it as a string should force…
Haha, yes, tomorrow night I’ll make a full post here. I’ve been working almost non-stop for the past two weeks getting things in order, as well as GD…
Thanks for the plugs guys. Hi Martin, I think what you’re describing is like a ‘cookbook’ site, such as this: ? No site for it exists- the closese…
fn sortByXMember arr1 arr2 x:1 = ( case of ( (arr1[x] < arr2[x]):-1 (arr1[x] > arr2[x]):1 default:0 ) ) arr = #(#(“box”, 10, 40), #(“p…
Try doing it by hand and see what results you get. I am inclined to believe this is a boolean issue- you may want to look at ProBooleans instead. Bu…
meshToSubtractFrom = copy basemesh subtractors = $Mesher_Fragment* as Array for subtractor in subtractors do ( –get the intersection of the subtract…