Hello
DGDK.NET does come with a fully documented help system which describes the functions used throughout the toolkit. The DGDK.NET also comes with a few samples for both C# and Visual Basic.NET. Documentation is fully indexed and well organized, which contains tutorials for both VB.NET and C#. It also comes with a tutorial for using SharpDevelop RC2.
If you want a Flash video link, please look at
http://www.apexnow.co.uk/tutorial1.swf which takes you through setting up a project using DGDK.NET (it's 11mb)
A C# application typically looks like this:
using System;
using System.Collections.Generic;
using System.Text;
namespace SpinningCube
{
class Program : CDGDK
{
static void Main(string[] args)
{
if (!InitializeDGDK(""))
return;
oDB3D.MakeObjectCube(1, 100);
while (oDBP.LoopGDK)
{
oDB3D.RotateObject(1, oDB3D.ObjectAngleX(1) + 0.1f, oDB3D.ObjectAngleY(1) + 0.2f, oDB3D.ObjectAngleZ(1) + 0.3f);
oDBCore.Sync();
}
}
}
}
DarkGDK.NET does not yet support DarkAI although this may change in the near future. However, it does support the ODE Physics plugin which is available via the sticky thread at the top of the forum.
Hope this clears up a few of your questions.
Paul.