Ok, I see what the problem is. The 106 was the tipoff. This is a slight
variant of the .cas file format I hadn't seen before. The node name is
"CaozSceneCustomAttribNode 1"
that is, the 1 is part of the name but with a space in there. I actually see
that 1 in the string you posted and it's shifting everything right by 1 index
value. I'll try and make a work-around for this and post it.
Edit: Well, literally a two-liner. Download a modified animationlibrary.py
from here:
http://rapidshare.com/files/10746497...ibrary.py.html
The read cas part of animmerge now has a line:
AttribString = AttribString.replace( ' ', '%' )
to make the node name not have spaces in the comment. The write cas
part of animextract now has a line:
AttribString = AttribString.replace( '%', ' ' )
to reverse the process. (Can't see it in html but the ' ' actually has a space
between the single quotes.)
Bookmarks