1.1.2 • Published 7 months ago

weaver-engine v1.1.2

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
7 months ago

Weaver Engine

npm version npm downloads GitHub contributors GitHub commit activity (branch) GitHub last commit (by committer)

Weaver Engine is a game engine written in JavaScript designed for use in web games.

Using Weaver Engine

Your JS:

import * as weaver from 'https://unpkg.com/weaver-engine@1.1.2/src/index.web.js';

let canvas = document.getElementById('canvas');

let game = new weaver.Game(canvas);
let cube = new weaver.GameObject(0, 0, 0, 10, 10, 10);
game.add(cube);
game.start();

Your HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>Weaver Engine Example</title>
    </head>

    <body>
        <canvas id="canvas" style="width: 100%; height: 100%; border: none; background-color: white;"></canvas>

        <script type="module" src="script.js"></script>
    </body>
</html>
1.1.2

7 months ago

1.1.1

7 months ago

1.1.0

7 months ago

1.0.9

7 months ago

1.0.8

7 months ago

1.0.7

7 months ago

1.0.6

7 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.0.3

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago