MoonDoggie
@moondoggie
New Member
Joined: Feb 15, 2024
Topics: 22 / Replies: 242
Reply
RE: how to find where a map is used in a file ?!

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…

17 years ago
Forum
Reply
RE: wire plugin

A Script would be cool if it added knots at intersections though wouldn’t it?

17 years ago
Forum
Reply
RE: Anyone have a script that writes objects positions to a file?

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 …

17 years ago
Forum
Reply
RE: Anyone have a script that writes objects positions to a file?

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…

17 years ago
Forum
Reply
RE: Animating a digital clock?

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…

17 years ago
Forum
Reply
RE: getAppData – to identify nodes – problem

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! …

17 years ago
Forum
Reply
17 years ago
Forum
Reply
RE: getAppData – to identify nodes – problem

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…

17 years ago
Forum
Reply
RE: getAppData – to identify nodes – problem

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…

17 years ago
Forum
Reply
RE: how to write a loop for a series of actions

Here is some help to get you started. Well commented ( local lastBox = undefined — remembers the last box you created — Put all your picture…

17 years ago
Forum
Reply
RE: Delegate question in scripted material plugin

replace delegate.bumpMap = given_map with delegate.bumpMap = normal_bump normal_map:given_map

17 years ago
Forum
Reply
RE: Wire parameters and scripting 🙂

polywhat? polynomials? Explain

17 years ago
Forum
Reply
RE: Just quickly – a q on spinners

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 …

17 years ago
Forum
Reply
RE: Just quickly – a q on spinners

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…

17 years ago
Forum
Reply
RE: Louvers Scripts

Wonderful help,many many thanks.

17 years ago
Forum
Page 11 / 18