Skip to content
alankligman edited this page Nov 29, 2011 · 63 revisions

Gladius Wiki

Gladius is a 3D game engine written in pure JS. The engine consists of some core pieces that provide useful functionality on their own, such as Entity and some components. Specialized functionality is provided by services for graphics, physics, sound and others.

Reference

Getting started

An engine instance is required before anything interesting can happen.

Example: Create a new engine instance

var main = function( engine ) {
};
gladius.create({
    {...},    // options
    main      // callback
});
Clone this wiki locally