Search the Community
Showing results for tags 'other'.
-
Hello, How do I make my canvas look the same on all devices? function PixiPlay(){ var renderer = PIXI.autoDetectRenderer(350,460,{antialias: false, transparent: false}); document.body.appendChild(renderer.view); var root = new PIXI.Container(); I saw a tutorial talking about Pixiv4. But he talks almost nothing about the canvas Can anyone teach me how to do this, in a simple way, please?
- 4 replies
-
- canvas
- resolution
-
(and 2 more)
Tagged with:
-
Hi I was wandering how to use a variable called game in a differenct java file than it was declared in. I know in basic java I could use something like public static game = *code here*but that doesn't work with Phaser for some reason. Declaring it as var game = *code here* how can i access it in a different file?