1
ASL Scripts / Re: ASL Editor [version 3.5 is out!]
« on: February 24, 2010, 07:44:34 am »
It's definitively an awesome program, so usefull to make an ASL script ! It saves a lot of time. Thanks a lot Kubajzz !
Ian Ross has just released a book on Anim8or. It's perect for a beginner and a good reference for experienced users. It contains detailed chapters on every aspect, with many examples. Get your own copy here: "Anim8or Tutorial Book"
file $alert;
if ($ext=="bmp"){
$alert.open("$console", "w");
$alert.print("\n\nWARNING :\n---------\nSome bitmap textures are used in : %s \nVRML doesn't support this file format for textures.\n\n",$s);
$alert.close();
}
$s=$shape.name;
for $ii = 0 to ($s.length() - 1) do {
if ($s.GetChar($ii) == 32) {
$s=$s.SetChar(95, $ii);
}
}
My exporter works fine, but I'm going to improve it a litle bit