Hi there,
How to collect the list of all max modifiers using for loop and output it to a mulitilistbox?
Thank you
Blog post
By sumchans · 2010-11-11
Hi there,
How to collect the list of all max modifiers using for loop and output it to a mulitilistbox?
Thank you
for better respond ask in the forum section
Anubis · 2010-12-18
because only a few peoples read blog section ;-)
rollout test "test"
(
local modsArray = #()
MultiListBox mlb "MultiListBox" items:#()
on test open do
(
for obj in objects do
for mods in obj.modifiers do
append modsArray mods
mlb.items = for m in modsArray collect m.name
)
)
createDialog test