Hi I am trying to check if the tile on the tilemap at the right of the player sprite is a lava tile
ofcourse i can make allot of conditions saying: compare tile at (player.X/playerSize)+1,player.Y/playerSize = NumberOfTheTile
but i want to check if the tile is a lava tile currently my lava tiles have number 2, 5, 8 and 11
I was thinking if there was a expression to make one conditions saying: compare tile at (player.X/playerSize)+1,player.Y/playersize = Expression(2,5,8,11)
but i cant find it anywhere