This engine is allot like XNA and uses the same work style but this engine is used for making RPG/Sandbox like games.

Report RSS How to Load 3D Models

This tutorial will teach you how to add 3D models to your game.

Posted by on - Basic Client Side Coding

just add

private ModelLoader ml = new ModelLoader();

protected override void LoadModel()
{
    string mymodel = "model path"; // can only load XML, Object, and FBX model files.

    ml.start();
    ml.Draw(0, 0, mymodel); // xpos, ypos, model to load
    ml.end();

    base.LoadModel();
}
Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: