All Projects → pixijs → Pixi Haxe

pixijs / Pixi Haxe

Licence: mit
Externs of Pixi.js for Haxe

Programming Languages

haxe
709 projects

Projects that are alternatives of or similar to Pixi Haxe

Pixi.js
The HTML5 Creation Engine: Create beautiful digital content with the fastest, most flexible 2D WebGL renderer.
Stars: ✭ 34,982 (+19889.71%)
Mutual labels:  webgl, renderer, pixijs, pixi, canvas
Gown.js
UI system for pixi.js inspired by feathers-ui
Stars: ✭ 195 (+11.43%)
Mutual labels:  webgl, pixijs, pixi, canvas
D Zone
An ambient life simulation driven by user activity within a Discord server
Stars: ✭ 466 (+166.29%)
Mutual labels:  pixijs, pixi, canvas
Duckhunt Js
DuckHunt ported to JS and HTML5
Stars: ✭ 390 (+122.86%)
Mutual labels:  webgl, pixijs, canvas
Leaflet.pixioverlay
Bring Pixi.js power to Leaflet maps
Stars: ✭ 264 (+50.86%)
Mutual labels:  webgl, pixijs, pixi
Awesome Pixijs
My list of awesome pixi.js related parties
Stars: ✭ 489 (+179.43%)
Mutual labels:  webgl, pixijs, canvas
Pixi Seed
Pixi.js project seed with ES6 and webpack
Stars: ✭ 149 (-14.86%)
Mutual labels:  webgl, pixijs, pixi
React Pixi Fiber
Write PixiJS applications using React declarative style.
Stars: ✭ 568 (+224.57%)
Mutual labels:  renderer, pixijs, pixi
React Ape
🦍• [Work in Progress] React Renderer to build UI interfaces using canvas/WebGL
Stars: ✭ 1,183 (+576%)
Mutual labels:  webgl, renderer, canvas
Freeciv Web
Freeciv-web is an Open Source strategy game implemented in HTML5 and WebGL, which can be played online against other players, or in single player mode against AI opponents.
Stars: ✭ 1,626 (+829.14%)
Mutual labels:  webgl, canvas
Hilo3d
Hilo3d, a WebGL Rendering Engine.
Stars: ✭ 123 (-29.71%)
Mutual labels:  webgl, canvas
React Regl
React Fiber Reconciler Renderer for Regl WebGL
Stars: ✭ 171 (-2.29%)
Mutual labels:  webgl, renderer
Phaser Kinetic Scrolling Plugin
Kinetic Scrolling plugin for Canvas using Phaser Framework
Stars: ✭ 117 (-33.14%)
Mutual labels:  webgl, pixijs
Knowledge
文档着重构建一个完整的「前端技术架构图谱」,方便 F2E(Front End Engineering又称FEE、F2E) 学习与进阶。
Stars: ✭ 1,620 (+825.71%)
Mutual labels:  webgl, canvas
Gcanvas
A lightweight cross-platform graphics rendering engine. (超轻量的跨平台图形引擎) https://alibaba.github.io/GCanvas
Stars: ✭ 1,705 (+874.29%)
Mutual labels:  webgl, canvas
Skqw
JavaScript Audio Visualizer
Stars: ✭ 112 (-36%)
Mutual labels:  webgl, canvas
Phaser Examples
Contains hundreds of source code examples and related media for the Phaser HTML5 Game Framework.
Stars: ✭ 1,680 (+860%)
Mutual labels:  webgl, canvas
R3f Next Starter
Repo is moving to https://github.com/pmndrs/react-three-next
Stars: ✭ 137 (-21.71%)
Mutual labels:  webgl, canvas
Morph
Morph is a free and open-source tool for creating designs, animations or interactive visualizations from data.
Stars: ✭ 107 (-38.86%)
Mutual labels:  webgl, pixijs
Earthjs
D3 Earth JS
Stars: ✭ 128 (-26.86%)
Mutual labels:  webgl, canvas

Pixi.js 5 / Haxe 4 Build Status

image

-### Installation

haxelib install pixijs

Issues

Found any bug? Please create a new issue.

Demos

Usage


package basics;

import pixi.core.Application;
import pixi.core.graphics.Graphics;
import pixi.core.textures.Texture;
import pixi.core.sprites.Sprite;
import js.Browser;

class Main extends Application {

	var _bunny:Sprite;
	var _graphic:Graphics;

	public function new() {
		
		var options:ApplicationOptions = {
			width: Browser.window.innerWidth,
			height: Browser.window.innerHeight,
			backgroundColor: 0x006666,
			transparent: true,
			antialias: false,
		};
		
		super(options);
		ticker.add(function(delta){
			_animate(delta);
		});

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

		_graphic = new Graphics();
		_graphic.beginFill(0xFF0000, 0.4);
		_graphic.drawRect(200, 150, 400, 300);
		_graphic.endFill();

		stage.addChild(_graphic);
		stage.addChild(_bunny);
		Browser.document.body.appendChild(view);
	}

	function _animate(e:Float) {
		_bunny.rotation += 0.1;
	}

	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.4

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].