Hello,
I can’t get my tiles properties, i have search on internet but 0 informations TT
Maybe someone here will be able to understand my problem.
public void initVirtualMap(){
boolean [][] blocked = new boolean[map.width][map.height];
for (int x = 0; x < map.width; x++)
{
for (int y = 0; y < map.height; y++)
{
for (int l = 0; l < 3; l++)
{
int id = map.layers.get(l).tiles[y][x];
Gdx.app.log("Test",String.valueOf(id));
String b = map.getTileProperty(id, "test");
Gdx.app.log("Test",b);
if (b!=null)
if(b.equals("true")) {blocked[x][y] = true;
Gdx.app.log("Test","Reussi");}
else
Gdx.app.log("Test","echec");}
}
}
}
The map used have 3 layers ( 2 with the property test, and 1 with nothing)
The console said me :
first layer = always id = 1
others = always id = 0
b = alaways null
I don’t understand this =/
Thanks