All Projects → yordan-kanchelov → pixi-console

yordan-kanchelov / pixi-console

Licence: MIT license
Pixi.js console

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to pixi-console

Phaser Kinetic Scrolling Plugin
Kinetic Scrolling plugin for Canvas using Phaser Framework
Stars: ✭ 117 (+200%)
Mutual labels:  pixijs
Pixi Sound
WebAudio API playback library, with filters. Modern audio playback for modern browsers.
Stars: ✭ 201 (+415.38%)
Mutual labels:  pixijs
console-table
ConsoleTable helps you to display tabular data in a terminal/shell/console
Stars: ✭ 76 (+94.87%)
Mutual labels:  console-tool
Creature webgl
2D Skeletal Animation WebGL Runtimes for Creature ( PixiJS, PhaserJS, ThreeJS, BabylonJS, Cocos Creator )
Stars: ✭ 140 (+258.97%)
Mutual labels:  pixijs
Pixi Haxe
Externs of Pixi.js for Haxe
Stars: ✭ 175 (+348.72%)
Mutual labels:  pixijs
viewb
convert the command to a web server
Stars: ✭ 12 (-69.23%)
Mutual labels:  console-tool
Pixi After Effects
play AfterEffects animation by pixi.js
Stars: ✭ 90 (+130.77%)
Mutual labels:  pixijs
CppConsoleTable
C++ Console Table: make text table in console easy and set up as you need
Stars: ✭ 53 (+35.9%)
Mutual labels:  console-tool
Gown.js
UI system for pixi.js inspired by feathers-ui
Stars: ✭ 195 (+400%)
Mutual labels:  pixijs
coinbash
💰 A bash script (CLI) for displaying crypto currencies market data in a terminal 🖥
Stars: ✭ 110 (+182.05%)
Mutual labels:  console-tool
Pixi Seed
Pixi.js project seed with ES6 and webpack
Stars: ✭ 149 (+282.05%)
Mutual labels:  pixijs
Phaser State Transition
State transition plugin for Phaser.js
Stars: ✭ 169 (+333.33%)
Mutual labels:  pixijs
terminalplot
No description or website provided.
Stars: ✭ 40 (+2.56%)
Mutual labels:  console-tool
Fairygui Pixijs
A flexible UI lib for PixiJS engine.
Stars: ✭ 124 (+217.95%)
Mutual labels:  pixijs
nuu
SciFi-MMORPG-2d-Scrolling-Action-Trade-Adventure
Stars: ✭ 17 (-56.41%)
Mutual labels:  pixijs
Morph
Morph is a free and open-source tool for creating designs, animations or interactive visualizations from data.
Stars: ✭ 107 (+174.36%)
Mutual labels:  pixijs
Rotten Soup
A roguelike built with Vue, Vuetify, Tiled, rot.js, and PixiJS! Playable at https://rottensoup.herokuapp.com/
Stars: ✭ 249 (+538.46%)
Mutual labels:  pixijs
ConsoleMenu
A simple, highly customizable, DOS-like console menu
Stars: ✭ 27 (-30.77%)
Mutual labels:  console-tool
particle-emitter
A particle system for PixiJS
Stars: ✭ 709 (+1717.95%)
Mutual labels:  pixijs
DelphiConsole
The Console class from C# ported to Delphi
Stars: ✭ 101 (+158.97%)
Mutual labels:  console-tool

Build Status code style: prettier

Pixi-console

Console class for PIXI useful for developing mobile game.

By default attaches itself to console log and error and will show itself if error is occurred.

Table of Contents

Installation

npm install pixi-console
  • If you want > pixi.js 5.0.0 support go with pixi-console 3.0.0 or greater version
  • For backward compatibility ( pixi.js v4.0.0 ) go with pixi-console 2.5.0 or greater version

Usage

import { PixiConsole, PixiConsoleConfig } from "pixi-console";

// customize default values of PixiConsole
const consoleConfig = new PixiConsoleConfig();
consoleConfig.consoleWidth = 800;
consoleConfig.consoleHeight = 600;

const pixiConsole = new PixiConsole(consoleConfig);
stage.addChild(pixiConsole);

const secondConsole = new PixiConsole(consoleConfig); // Error PixiConsole is singleton..
pixiConsole == PixiConsole.getInstance(); // true

Documentation

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, and open a pull request.

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