@woven-canvas/core
v0.1.4
Published
Framework-agnostic editor library built on ECS
Readme
@woven-canvas/core
Framework-agnostic infinite canvas editor library.
Installation
npm install @woven-canvas/coreUsage
import { Editor } from "@woven-canvas/core";
const editor = new Editor(domElement);
await editor.initialize();
// Run the editor loop
function loop() {
editor.tick();
requestAnimationFrame(loop);
}
loop();Documentation
For full API documentation, see the documentation site.
License
MIT
