Broken Animation Commands?

Archives Forums/Blitz3D SDK Programming/Broken Animation Commands?

Pepsi(Posted 2007) [#1]
Edit[July 8th,07]
Solved!

I had problem with bbAnimTime. The problem was down on how EBasic returns floats. Instead using floats for import return values, use double (ie: for EBasic that is ).

Instead of:
DECLARE CDECL IMPORT, bbAnimTime(BBObject o),FLOAT

do:
DECLARE CDECL IMPORT, bbAnimTime(BBObject o),DOUBLE