hxpixijs

Externs of Pixi.js (v3) for Haxe - 2D webGL renderer with canvas fallback.

Usage no npm install needed!

<script type="module">
  import hxpixijs from 'https://cdn.skypack.dev/hxpixijs';
</script>

README

Haxelib version"> npm version Build Status Stories in Ready Built with Grunt

haxe pixi logo

Externs of Pixi.js v3.x for Haxe - A fast and lightweight 2D javascript rendering library that works across all devices.

Installation

haxelib install pixijs

or via npm

npm install hxpixijs

API Documentation

Documentation

Issues

Found any bug? Please create a new issue.

Demos

Plugins

Filters (WebGL only)

COHERE - Sample MVC application using haxe and pixi.js

Look at the samples folder for the source code of above examples.

Usage


package samples.basics;

import pixi.core.display.Container;
import pixi.core.textures.Texture;
import pixi.core.renderers.SystemRenderer;
import pixi.core.renderers.Detector;
import pixi.core.sprites.Sprite;
import js.Browser;

class Main {

    var _bunny:Sprite;
    var _renderer:SystemRenderer;
    var _stage:Container;

    public function new() {
        // Rendering options usage sample
        var options:RenderingOptions = {};
        options.backgroundColor = 0x003366;
        options.resolution = 1;

        _stage = new Container();
        _renderer = Detector.autoDetectRenderer(800, 600, options);

        _bunny = new Sprite(Texture.fromImage("assets/basics/bunny.png"));
        _bunny.anchor.set(0.5, 0.5);
        _bunny.position.set(400, 300);

        _stage.addChild(_bunny);

        Browser.document.body.appendChild(_renderer.view);
        Browser.window.requestAnimationFrame(cast _animate);
    }

    function _animate() {
        Browser.window.requestAnimationFrame(cast _animate);
        _bunny.rotation += 0.1;
        _renderer.render(_stage);
    }

    static function main() {
        new Main();
    }
}

Licensing Information

MIT license

This content is released under the MIT License.

Pixi.js is licensed under the MIT License.

Contributor Code of Conduct

Code of Conduct is adapted from Contributor Covenant, version 1.3.0