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

RSS Articles

How to Load 3D Models

Client Side Coding Tutorial

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();
}
How to Move Your Image

How to Move Your Image

Client Side Coding Tutorial

This tutorial will teach you how to move images based on our KeyDown event.

Adding Images in The Explorer Engine

Adding Images in The Explorer Engine

Client Side Coding Tutorial

This tutorial will teach you how to add images in The Explorer Engine.

Post a comment

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

X