Questions tagged as 'pixijs'

1
answer

Equivalent canvas in PixiJS?

How is the following code made in PixiJS? I have tried to see documentation and several things, but there is not much in Spanish. var c = document.getElementById("canvas"); var ctx = c.getContext("2d"); ctx.font = "20px Ubuntu"; ctx...
asked by 23.07.2017 / 23:52
1
answer

The text created with PixiJS is not drawn

I try to draw the text, but it is not drawn, why the error? This is my code: var a = document.getElementById("canvas"); var d = PIXI.autoDetectRenderer(200,200,a); var ctx = new PIXI.Graphics(); document.body.appendChild(d.view);...
asked by 24.07.2017 / 13:16