Mat Groves 76 Report post Posted May 3, 2013 Hi everyone and welcome to the PIXI.js forum! First off, big thanks to @photonstorm for providing a place for people to talk Pixi, very kind of you sir! If you dont know what pixi.js is then let me give ya the low down: Pixi.js a fast, lightweight, open source 2D library that works across all devices. The Pixi renderer allows everyone to enjoy the power of hardware acceleration without prior knowledge of webGL. It's the fastest HTML5 renderer in town! The idea behind pixi.js is that it can be used as the rendering component in your game engine (or any other type of project!) rather than as a game engine itself. Questions / bug reports / amazing feature ideas, or anything at all Pixi, then this is the place to discuss it! I will also be posting updates here as the engine grows and evolves. Pixi.js can be found here along with lots of examples: https://github.com/GoodBoyDigital/pixi.js To find out more about Pixi and read our beginners tutorial, check out our blog over on Goodboy Quote Share this post Link to post Share on other sites
Hsaka 33 Report post Posted May 3, 2013 Pixi.js looks really good. I'll be trying this out soon! 1 ryouji reacted to this Quote Share this post Link to post Share on other sites
Mat Groves 76 Report post Posted May 3, 2013 Thanks Quote Share this post Link to post Share on other sites
MaciejC 0 Report post Posted May 5, 2013 Hi any chance to see code for "Fight for everyone"? You have some cool stuff there (device position detection, music/sounds). It would be great to see how you did that or at least short tutorial how to do it. ThanksM Quote Share this post Link to post Share on other sites
Fla5h 2 Report post Posted May 5, 2013 does pixie handle collision detection? Quote Share this post Link to post Share on other sites
Mat Groves 76 Report post Posted May 6, 2013 Hi any chance to see code for "Fight for everyone"? You have some cool stuff there (device position detection, music/sounds). It would be great to see how you did that or at least short tutorial how to do it. ThanksM Thats a pretty neat idea We are working on little game that we can share with everyone so that they can see how pixi.js is intended to be used for game development. Although we fully intend pixi.js to be used to make wonderful schweet HTML5 games, its not really a game engine - its more of rendering engine. It focuses on putting stuff on the screen fast The idea is that you can use it as part of your game engine or even build a game engine on top of it. For example pixi.js could be (and may well be at some point!) used as the renderer for phaser rather than an alternative to it. Its a bit like the 2D version of three.js. Three.js is not a game engine but could be used to make games. The cool thing about this is that we can focus solely on making pixi.js the fastest render in town so that people can focus on making there game engines awesome 1 1 Hsaka and ScorpioCat reacted to this Quote Share this post Link to post Share on other sites
Mat Groves 76 Report post Posted May 6, 2013 does pixie handle collision detection? Hi Fla5h, Pixi.js does not have any collision detection built in as its main focus is rendering.. Although it would work perfectly with any of the cool physics engines out there such as box2D. 1 Fla5h reacted to this Quote Share this post Link to post Share on other sites
mose.raguzzini 1 Report post Posted May 7, 2013 Hi Fla5h, Pixi.js does not have any collision detection built in as its main focus is rendering.. Although it would work perfectly with any of the cool physics engines out there such as box2D. Hi, I'm planning to override the rendering engine of crafty.js with the pixi's one, I'll let you know when (and "IF" eheh) it's ready for testing. 1 Fla5h reacted to this Quote Share this post Link to post Share on other sites
pat 10 Report post Posted September 4, 2013 Hello all, Pixi.js seems very interesting, we have a web site (e-learning for kids) in Flash (http://patschool.com) that we need to translate in HTML 5.If you want to have an idea of the site, click on the button VIDEO and wait a little (it is in French sorry :-) ) Do you think that pixi.js is the good choice for this site ? Thanks a lot for your answer. Quote Share this post Link to post Share on other sites
Ezelia 82 Report post Posted September 4, 2013 @Pat : sure you'll be able to convert your website to HTML5, use Spine for skeletal animations (witch is supported by Pixi) .most of other things can be handeled with Pixi interactive sprites.beware, if you want to target mobile devices you should rethink the way the sounds are player since there is many limitation in audio play on mobile device. (joli site au passage ) 1 GourmetGorilla reacted to this Quote Share this post Link to post Share on other sites
pat 10 Report post Posted September 4, 2013 (joli site au passage ) Merci Quote Share this post Link to post Share on other sites
mwatt 44 Report post Posted September 30, 2013 Finally went through all the Demos. Very cool. "Fight for everyone" was freaking outstanding. Quote Share this post Link to post Share on other sites
LongAnimals 0 Report post Posted January 17, 2014 Pixi seems like it could be exactly what I'm looking for, looking forward to trying it. Quote Share this post Link to post Share on other sites
Ginkan 1 Report post Posted February 25, 2014 hi, im very new to html5 & webgl, i want to read more tutorials before i get into it...the following links are all the pixi.js tutorials i could found:1) http://www.goodboydigital.com/pixi-js-tutorial-getting-started/2) http://flippinawesome.org/2013/11/04/building-a-parallax-scrolling-game-with-pixi-js/3) http://peepsquest.com/tutorials/pixi-basics.html4) http://www.checkme.tw/wordpress/js-foctory/ (Chinese)5) https://www.youtube.com/results?search_query=pixi.js&sm=3 (YOUTUBE videos)i am really looking forward to read of them. 1 ScorpioCat reacted to this Quote Share this post Link to post Share on other sites
stealman 3 Report post Posted January 24, 2015 Hello, I am seeking for some 2D rendering library to empower my project. I struggle with FPS even after many and many optimization. I am using 4 layers to rerender only what I need, I am using offscreen buffers but still .. it has too low DPS on some devices. I would like to know whether it could run faster with Pixi .. even if it takes several weeks for me to implement it (i think). Is here someone who can give me some advice ? Maybe it is running as fast as possible on javascript but I dont believe that. Link to my project is www.darkenlight.net:8082/primeWeb - it is using Tomcat server and websockets. You may login via click on LOGIN AS label on top right side of screen. Thanx for whatever advice you could give me Quote Share this post Link to post Share on other sites
GourmetGorilla 1 Report post Posted June 1, 2015 Mat have you guys considered putting a gui on the front of pixi? It's brilliant but seems to be seriously underused. It could be the next flash. Quote Share this post Link to post Share on other sites
mha15 0 Report post Posted August 7, 2017 hi everybody I need some help for drawing thousands of point. I need something for improve performance I had draw them with circule but it takes long time , Three js have THREE.Points which is better than circule performancely. can anybody help me? Quote Share this post Link to post Share on other sites
ivan.popelyshev 1071 Report post Posted August 7, 2017 @mha15 cache it. Search the forum for "generateTexture", there were many cases like that. Quote Share this post Link to post Share on other sites
jonforum 90 Report post Posted May 3, 2018 just share here awesome link for start with pixi.js. multi language tutorial book available. 日本語 - 中文版 - 한국어 - Español - Français - Italiano - Deutsch - Русский - English https://thebookofshaders.com/ https://webglfundamentals.org/ enjoy 1 ivan.popelyshev reacted to this Quote Share this post Link to post Share on other sites