Quote: "Can SDK run milkshape type animations?"
If DBPro can do it, then the GDSK should be able to as well.
Quote: "Is the fps much better than the others?"
It certainly can be
Quote: "How hard is it to convert dbas and dbpros to it?"
Not too hard, just repetative.
Quote: "Could some one give me an example of some basic codes"
include "DarkSDK.h"
void DarkSDK ( void )
{
// set sync on and sync rate to 60 frames per second
dbSyncOn ( );
dbSyncRate ( 60 );
// make a cube
dbMakeObjectCube ( 1, 10 );
// loop until the escape key is pressed
while ( !dbEscapeKey ( ) )
{
// update screen
dbSync ( );
}
}