UNPKG

seed-engine

Version:

A Lightweight 2D game engine using WebGL2. The engine is designed on the focus of creating a bridge between creating and publishing games to the Seed Network as modules.

32 lines (27 loc) 581 B
<!doctype> <html> <head> <meta charset="utf-8"> <title>Seed Engine Test</title> <style> body { margin: 0; padding: 0; } #game { width: 78vw; height: 52vw; margin: 10px 0px 0px 11vw; border: 2px solid black; outline: none; } img { display: none; } </style> </head> <body> <canvas tabindex="1" id='game' width='900' height='600'></canvas> <script src="/dist/bundle.js"></script> </body> </html>