How to remove pixi.js banner from the console?
After looking in the source code of Pixi I found that an easy way to disable the banner is to add this line just after pixi.js embed
<script>PIXI.utils._saidHello = true;</script>
This is deprecated in newer versions:
PIXI.utils._saidHello = true;
This is right:
PIXI.utils.skipHello();