there is a “this” keyword? and wow didn’t know that you can’t do a reference the rollout to an object… Thanks!
so there is no way other than creating an instance globally?
oops… forgot to use $.modifiers[1] instead of $. No wonder why I can’t see it in the modified object list. I’d already done this before I asked… Thank…
never read this stringstream and the mxs documentation doesn’t connected with it… thanks…
You seems pretty just follow the example says on it. I think you should experiment with it also. This also works: s = Sphere pos:[20,20,20] b = Box …
it’s a radian value for 360 anyway just paste this on the right side and connect it… theta = Z_Rotation if (mod theta 360) < 0.0 then (theta +…
fn clampAngleTo360 theta = ( theta = mod theta 360 return (if theta < 0.0 then (theta + 360) else theta) ) offset = clampAngleTo360($box01.z.rota…
a = (matrix3 [1.45957,-0.41383,0.862164] [0.943314,0.881728,-1.17373] [-0.157291,1.44784,0.961228] [11.7975,-45.8531,66.706]) aInv = inverse (copy a) …
Oh… okay I get it now… thanks… yep… it’s working. Your code is much shorter than mine. :S.
where will I put the custom mirror plane on this? mirrorTm = (inverse tm) * (scalematrix localScale) * tm and what this does?