Elaria Engine is a lightweight, ready-to-use, plug-and-code1 and easy browser game engine.
It supports:
- Static sprites
- Animatied spritesheets
- Sounds
- Transformation
- UI / HUD
- Build Elaria Engine using
npx webpack
or justwebpack
- Use the
elaria.js
file in your project, just include it directly into your HTML file:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Wonderful Game</title>
<script src="elaria.js"></script>
</head>
<body>
<canvas id="game-canvas"></canvas>
</body>
</html>
- Follow the examples in JSDocs to create a game. We are currently working on a documentation website. Please, stand by.
MIT
1 Plug and Code means you don't need to install the dependencies or download apps to use the engine. Just include it into your project by adding a <script>
tag!