Notifications
Clear all

[Closed] switching material libraries –urgent

guys…

I have a saved material library and i want to replace a set of slots from the saved material library to the current one…
m = loadMaterialLibrary ((getDir #matlib)+”\medit1.mat”)

for i = 9 to 13 do

(

ME[i] = m[i]

)

i could not figure out what i am doing wrong…suggestions guys…

thanks
rajv

2 Replies

First of all you’re using uninitialised variables to do your thing, which will never work. I’ve fixed your code, but I don’t know if it is what you want.

(
loadMaterialLibrary ((getDir #matlib)+"\\medit1.mat")
local m = currentMaterialLibrary
for i = 9 to 13 do meditMaterials[i-8] = m[i]
)

there is a problem when i replace the path of my .mat directory…

loadMaterialLibrary ((getDir #scripts)+”[\rs1.mat](file://\rs1.mat)”)
local m = currentMateriallibrary
for i = 9 to 13 do meditMaterials[i-8] = m[i]

Anything suggestions on what i am doing wrong?

Thanks

Rajv