lutteral
@lutteral
New Member
Joined: Feb 15, 2024
Topics: 1 / Replies: 30
Reply
RE: Max Hair Fur Help

for i in selection where i.modifiers[#Hair_and_Fur]!=undefined do ( i.modifiers[#Hair_and_Fur].MaterialSpecular = 30 ) — you can replace selecti…

14 years ago
Forum
Reply
RE: What is your script for life? šŸ˜‰

Great Thread! Great Posts! hereā€™s mine: fn work =(while not awesome or eof(budget) do keepRefining()) for i in monday to friday do ( endTime = 5 …

14 years ago
Forum
Reply
RE: Render to texture – Backburner

Any news on this? Iā€™m stuck with the same problemā€¦ thanks

14 years ago
Forum
Reply
RE: Losing EnvVariable when closing 3dsmax

As a workaround, you could declare and assign a global variable (or read it from an INI file) in a script and put it in your scripts/startup folder. I…

14 years ago
Forum
Reply
RE: How to close Dialog on focus lost?

Iā€™m not an expert using dotNet neither, but Iā€™ve used some controls in my scripts though. Thereā€™s a lot of dotNet gurus in this forum, maybe one of th…

14 years ago
Forum
Reply
RE: How to close Dialog on focus lost?

I guess dotNet is the answer: on <control_name> LostFocus <System.EventArgs>e do ( … )

14 years ago
Forum
Reply
RE: For loop with materials

for i in selection do i.material = meditmaterials[(random 1 3)]

14 years ago
Forum
Reply
RE: question about rotation values

try this: at time t $Point01.rotation.controller.y_rotation = val1 Rotation controllers are a little fuzzy to understand, at least for me. It seem…

14 years ago
Forum
Reply
RE: start simulate in cloth modifier

why youā€™re using a custom attribute for this? I mean, you already have the ā€œsimulateā€ button in the interface for the cloth modifierā€¦

14 years ago
Forum
Reply
RE: start simulate in cloth modifier

on button pressed do ( theObject.modifiers[#cloth].simulate true — starts simulation with the simulation dialog ) thatā€™s assuming that theObject is…

14 years ago
Forum
Reply
RE: store TriMesh in scripted plugin?

try putting the mesh variable in a custom attribute on a global track node, something like: myCustomAttribute = attributes theAttribute attribID:#…

14 years ago
Forum
Reply
RE: custAttributes.getowner doesn't work!

for CADef in (custAttributes.getSceneDefs ()) do ( theCA = (custAttributes.getDefInstances CADef) for theInstance in theCA do ( theObj = c…

14 years ago
Forum
Reply
RE: please help , reading string with "c:\releases\proyect" problem with "\r" in name

fn xReplace st = — replaces “\” by “/” on a given string ( n=”” for i = 1 to st.count do n+=if st[i]==”\\” then “/” else st[i] n ) if (ss = o…

14 years ago
Forum
Reply
RE: How To … Change Dialog's Icon?

sweet! where do you get this info from?

14 years ago
Forum
Reply
RE: Why doesn't this work?

ok, Iā€™ve found a workaround: seems that m keeps the old value after the replaceinstances() function, even if the material passed has changed but the a…

15 years ago
Forum
Page 1 / 3