项目作者: mriiiron

项目描述 :
WebGL Engine of Sprite Animation
高级语言: JavaScript
项目地址: git://github.com/mriiiron/wesa.git
创建时间: 2017-09-19T21:10:45Z
项目社区:https://github.com/mriiiron/wesa

开源协议:MIT License

下载


WESA - WebGL-based Engine of Sprite Animation

Perhaps the simplest and lightest (14KB, currently) solution for turning your brilliant idea into old-school style, pixel-friendly sprite animations being displayed on the web.

You may consider to use fancy libs such as PixiJS or even ThreeJS, but WESA would be your simple but elegant start to learn to animate your favorite sprites in browser.

WesaJS will always be fully open-sourced, for the sake of my personal passion on sprite animations and retro-style games.

Basic Example

Include WESA

  1. <script src="./js/wesa.min.js"></script>

Prepare a Canvas

  1. <canvas id="canvas" width="640" height="480"></canvas>

Write Scripts

  1. // Initializing WESA
  2. wesa.core.init(document.getElementById('canvas'));
  3. // Adding sprite sheets
  4. wesa.assets.source.spriteSheetUrlArray.push('./assets/texture/megaman.png');
  5. // Adding object definition file
  6. wesa.assets.source.objectJsonUrl = './assets/megaman.json';
  7. wesa.assets.load(function () {
  8. // Create the scene
  9. let scene = new wesa.Scene('Scene');
  10. // Add a sprite
  11. scene.addSpriteToLayer(0, new wesa.Sprite({
  12. object: wesa.assets.objectList[0],
  13. action: 0,
  14. team: 0,
  15. position: { x: 0, y: 0 },
  16. scale: 4
  17. }));
  18. // Run the scene
  19. let animate = function () {
  20. requestAnimationFrame(animate);
  21. scene.update();
  22. scene.render();
  23. }
  24. animate();
  25. });

See full demo

More Demos

  • Coming soon!

History

WesaJS is a successor of my following college works:

To-do

  • Pausing

License

MIT