Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Documented Pixi.js ERRORS

trapless

Villager
Xy$
0.00
sometimes pixi is fixed but RpgMaker doesnt yet include that fixed version of pixi.
sometimes... pixi isn't fixed yet..
this post is meant to catalog bugs and their corrections applicable to versions of pixi packaged with RpgMaker MV
posting version numbers,error, line number and correction should make for simple fixes eh..
 
Last edited:

trapless

Villager
Xy$
0.00
RMMV version: 1.3.4
Pixi.js version: 4.0.3
error: PIXI.Polygon.contains() doesnt calculate bounds properly.
error lineNumber: 14243
JavaScript:
for (var i = 0, j = length - 1; i < length; j = ++i) {
correction:
JavaScript:
for (var i = 0, j = length - 1; i < length; j = i++) {
 
Last edited:

LTN Games

Master Mind
Resource Team
Xy$
0.01
I don't understand how postfix instead of prefix would make any difference, I always use postfix myself, although prefix is supposedly faster. Also, if it's a Pixi.js bug, I'd recommend bug reporting at their Github, it's how open source frameworks like these thrive. Anyways, if I run into any bugs, I'll post a fix here and probably post it on Pixi as well.
 

trapless

Villager
Xy$
0.00
whaterver reason, the change works.
i think pixi.js has fixed the bug in a newer release. rmmv current build of 1.3.4 doesnt include it however.
 
Top