0.0.2 • Published 5 years ago

snake-render-engine v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Main Coverage Status

Snake Render Engine

Snake Render Engine is a 2D render engine based on webgl with a functional API analog to the one of the well known react UI library. It also supports jsx syntax and is component based.

Gettings started

Here is a minimal example that highlights how to run it.

// In order to define components we need to import SRE
import SRE, { initRenderer, initWithRenderer, Rect } from "sre";

// Get the host canvas where the engine will run
const canvas = document.getElementById("canvas");
const height = canvas.height;
const width = canvas.width;

const gl = canvas.getContext("webgl");

const render = initRenderer({ gl, width, height });
const run = initWithRenderer(canvas, render);

// Define a Scene Node that renders a simple rect and logs click events
const Scene = () => (
  <Rect x={320} y={200} z={0} width={640} height={100} onClick={console.log} />
);

// Start it
run(<Scene />);

Demos

Demos are available here : demos

0.0.2

5 years ago

0.0.1

5 years ago

1.0.0--alpha-2

5 years ago

1.0.0--alpha-1

5 years ago