Notifications
Clear all
[Closed] Variable Definition Confusion
Nov 03, 2011 3:15 pm
fn updateMods selected property state modClass =
(
for s in selected do for m in s.modifiers where classOf m == modClass do
(
m.property = state
)
)
property = enabled
list = turbosmoothTool.findModifierObjects turboSmooth
selected = turbosmoothTool.findSelectedObjects list turboSmooth
turbosmoothTool.updateMods selected property enabledCBState turboSmooth
So this is a snippet of the code I’m working on, and I can’t figure out how to define property variable to have the right value. Right now it is just making the undefined variable of property into the undefined variable of enabled, solving nothing. What I’m trying to do is get m.property = state to essentially be equal to turbosmooth.enabled = true but in context will run entirely different depending on what variables are sent to the function.
So I need a way to define a variable with the actual executable enabled, or for that matter any property of any potential modifier.
3 Replies
Nov 03, 2011 3:15 pm
You could pass the property as a string and then use setProperty.
property = “enabled”
…
setProperty m property state