0.1.5 • Published 9 years ago

canvasrenderer v0.1.5

Weekly downloads
5
License
Zlib
Repository
github
Last release
9 years ago

CanvasRenderer

Build status Windows build status GitHub version npm version Dependencies

A simple base class for canvas animations.

Installation

This module can be installed from npm.

$ npm install canvasrenderer

Usage

import CanvasRenderer from "canvasrenderer";

function Something() {

	CanvasRenderer.call(this);

}

Something.prototype = Object.create(CanvasRenderer.prototype);
Something.prototype.constructor = Something;

Something.prototype.update = function(elapsed) {

	// Custom update logic.

};

Something.prototype.draw = function() {

	// Custom draw code.

};
var sth = new Something();

requestAnimationFrame(sth.render);

Documentation

API

Contributing

Maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

License

Copyright (c) 2015 Raoul van Rüschen
Licensed under the Zlib license.

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago