Not a weird one at all. If you are set on using usedmaps(), you can combine it with getClassInstances. Simply fill your usedmaps() array with the fi…
A Script would be cool if it added knots at intersections though wouldn’t it?
Can this get shorter? ( local fs = createFile “c:/temp/objectList.txt” for o in objects do format “% – % ” o.name o.pos to:fs close fs …
for obj in $* do This is bad. Instead, a better option would be to use the keyword “objects” which is dynamic and contains all objects in the scene…
Set a callback on the sun changing, and have the clock update itself with the values it reads from the daylight system I imagine. Why not just comp t…
P.S Also cheers for the code example MoonDoggie, your string filtering code is a lot smoother than mine, so I have updated my clumsy version! Thanks! …
^ or you could do that.
another way to do this would be to filter through a matchPattern() function, or a findString() function which might be faster, but I didn’t think of i…
A way to do this (albeit, someone will chime in with a better way) would be to brute force the string to get Sphere02 from it. ( — Function getNod…
Here is some help to get you started. Well commented ( local lastBox = undefined — remembers the last box you created — Put all your picture…
replace delegate.bumpMap = given_map with delegate.bumpMap = normal_bump normal_map:given_map
polywhat? polynomials? Explain
using a for loop with the collect keyword stores the value of what you collect in the variable you assign. It’s amazing, some other handy uses might …
arrL = #() i = 1 for spn in ro_CustomLinks.controls where isKindOf spn spinnerControl do ( if spn.value != 0 then arrL[i] = spn.value i += 1 ) The f…
Wonderful help,many many thanks.