Now Surlix has that ability to link to the irrlicht.net library and build 3D applications
Surlix takes a script and converts it into .net code and compiles it using the framework making a native .net application. its a mini programming language!
requirements .net 3.5
Example: Open an irrlicht window:
Code: Select all
Import (3dlib.o);
Universe();
ThisClass();
EntryPoint();
xx ( Game mygame = Game.Instance@ );
Call (mygame.Start, 800 | 600);
While (mygame.device.Run<>);
Invoke ( mygame.BeginDraw );
Invoke ( mygame.FinishDraw );
DoWhile();
Invoke (mygame.Dispose);
Exit();
EndClass();
EndUniverse();
http://confined.coderzilla.net/files/Debug.rar