-
Notifications
You must be signed in to change notification settings - Fork 48
Home
alankligman edited this page Nov 29, 2011
·
63 revisions
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.
An engine instance is required before anything interesting can happen.
var main = function( engine ) {
};
gladius.create({
{...}, // options
main // callback
});