All Questions
11 questions
0
votes
1
answer
275
views
Isometric tilemap circle around object
I am developing an isometric game like Anno 1602.
I have an isometric tilemap. The default tilesize is 64x31.
My goal is to show the area a building has influence to. For that I want to show a circle ...
1
vote
2
answers
848
views
How to create a map array with multiple layers?
I’m trying to create a map array without using JSON because I want to dynamically generate the map:
...
2
votes
1
answer
1k
views
How to zoom in and out the full tilemap from center in phaser?
I am developing a game where I need to zoom in entire map also I can be able zoom out. I have created a tilemap using tiled software and rendered it using phaser.js. How can I add this function to my ...
0
votes
2
answers
970
views
Phaser is not loading the same map created in Tiled software
I have created a sample map using the tiled software. Then tried to load the same on a webpage using phaser.js. But I am not getting the proper result. Is there any mistake in my code or something ...
3
votes
0
answers
290
views
Find all tiles by ID in layer
In phaser 2.6.2, is there a way to retrieve all tiles given their ID from a TilemapLayer? The method searchTileIndex on Tilemap ...
1
vote
0
answers
875
views
How to use multiple tilesets in a map?
I'm currently looking at this phaser example: http://phaser.io/examples/v2/tilemaps/blank-tilemap
Here, the author creates a simple tilemap editor. In line #33 he adds a preloaded image as tileset.
...
3
votes
4
answers
3k
views
How to center a tilemap in Phaser?
In Phaser, I am loading a Tilemap from JSON.
I would like my Tilemap to display in a particular position (for simplicity here I say the middle of the screen).
...
3
votes
1
answer
1k
views
How to use 16/32 square pixel tiles in tilemap on arbitrarily sized canvas in Phaser
My question is about Phaser and Tiled but I'm not quite sure how to ask it so please bear with me.
Do I need to make the size of the canvas or area on which I want to display my tilemap a multiple ...
2
votes
0
answers
992
views
Tilemap layer scaling and Camera issue in Phaser
I'm working with the Phaser framework and I'm struggling with a camera/rendering issue when scaling a tilemap layer to simulate a zoom feature in my project.
The camera size is set to 1024x768px.(...
7
votes
1
answer
4k
views
How can I implement an RPG-maker style
I'm currently working with Phaser, making a game that's procedurally generated. I wanted to use some RPG maker art in my game (for reference, I'm using the RTP). I stumbled across this article, which ...
5
votes
1
answer
4k
views
Adapting tilemap algorithm to support isometric tilemap
I'm using Phaser to build an isometric game. The framework doesn't have support for isometric tilemaps yet, so I'm starting to write a PR for it to support.
What I currently have, loading an ...