• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Android How to read a json file with gml?

B

Braian

Guest
Hello, the project for now I test it on windows desktop but in the future I will do it for android but detail my subject
I am trying to load my json file enemys.json, how would that be?
Detail as it would be the... enemys.json
Code:
{
   "ENEMYS":[
      {
         "ENE_ID":1,
         "E_TYPE":"FIRE"
      },
      {
         "ENE_ID":2,
         "E_TYPE":"COLD"
      },
      {
         "ENE_ID":3,
         "E_TYPE":"WATER"
      }
   ]
}
 
G

Guest User

Guest
Hello, I know this is an old form, but I am trying to get my leaderboard to work with android using Google Services. I was told that I might need to use Json files in order to get my leaderboard to work.
 

rIKmAN

Member
Hello, I know this is an old form, but I am trying to get my leaderboard to work with android using Google Services. I was told that I might need to use Json files in order to get my leaderboard to work.
Then follow the links posted by Aura and Kululu to learn how to use json, and look to implement it into your game.
 
Top