Advertisement
Guest User

Untitled

a guest
May 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. create : function() {
  2. //game.state.start('matchmakingState')
  3.  
  4. console.log("ENTRA A LA PANTALLA DE RANKING")
  5. var styloranking = { font: "30px Arial", fill: "#ff0044",boundsAlignH: "center", boundsAlignV: "middle" };
  6. game.add.text (350, 25,'RANKING',styloranking);
  7.  
  8. if(game.global.ranking.length != 0){
  9. console.log("Hay gente en el ranking!!")
  10. console.log(game.global.ranking);
  11. var pY = 100;
  12.  
  13. for(var i = 0; i<game.global.ranking.length;i++){
  14. var uwu = game.global.ranking[i].color;
  15. styleuwu = { font: "bold 30px Arial", fill: uwu, boundsAlignH: "center", boundsAlignV: "middle" };
  16. var letrasPapu = game.global.ranking[i].name +" : "+game.global.ranking[i].puntos;
  17. game.global.pintarRanking = game.add.text(350,pY, letrasPapu, styleuwu);
  18. pY+=50;
  19. }
  20. }
  21.  
  22. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement