Anim8or Community
General Category => ASL Scripts => Topic started by: Jdez on September 19, 2009, 04:36:18 am
-
I was wondering if anyone has written any material scripts that also use textures?
-
Hello Jdez,
I'm not sure if there are any material scripts that use textures... Anyway, I wrote a very simple one for you:
#command("object");
material $m;
texture $t;
/* Create a new material */
$m = project.NewMaterial("MyMaterial");
/* Create a new texture */
$t = project.NewTexture("MyTexture");
$t.SetFileName("c:\\Anim8or\\Example.jpg"); /* Enter your file path here */
/* Attach the texture to the newly created material */
$m.SetTexture(TEXTURE_DIFFUSE, $t);
/* Adjust the material settings */
$m.alpha = 0.5;
$m.diffuse = (0, 1, 0.5);
$m.Kd = 1;
$m.Ks = 0;
$m.SetBlendMode(TEXTURE_DIFFUSE, BLEND_MODE_LIGHTEN);
.... (more material settings)
The file path can be absolute or relative. If it is relative, then it starts from the "Project" folder that can be configured in the "File>Configure" dialog box.
I hope it helped ;)
-
Thanks very much!
-
i made one using cube maps for a toon ink output
material_ink.zip (http://homepage.ntlworld.com/w.watson3/main/files/material_ink.zip) extract all into your script folder then use script>run script