Make my own score numbers?

ChipmunkGamesChipmunkGames Member Posts: 106
edited November -1 in Working with GS (Mac)
Hi forum, I'm making a score counter, but I find the gamesalad text thing is pretty bad quality. I want to make my own numbers. How can i get my numbers to be the same number as my 'score' attribute like the text feature does??

Comments

  • JackBQuickJackBQuick Member Posts: 524
    Have a look at firemaplegames's Custom Font DEMO.
  • UtopianGamesUtopianGames Member Posts: 5,692
    If you don't want to see the 0 0 0 0 make that actor have an alpha of 0 until your score reaches X amount.

    For e.g:

    0 0 5 0 you have a score of 50 but don't want the other numbers to be visible ....hide the 1st 2 zeros with code if score >99 alpha = 1 otherwise alpha =0 and in the 1st actor (far left) if score >999 and so on.

    Darren.
  • ChipmunkGamesChipmunkGames Member Posts: 106
    thanks guys!
  • UtopianGamesUtopianGames Member Posts: 5,692
    Your welcome m8, gl with your game.

    Darren.
  • AfterBurnettAfterBurnett Member Posts: 3,474
    utopiangames said:
    If you don't want to see the 0 0 0 0 make that actor have an alpha of 0 until your score reaches X amount.

    For e.g:

    0 0 5 0 you have a score of 50 but don't want the other numbers to be visible ....hide the 1st 2 zeros with code if score >99 alpha = 1 otherwise alpha =0 and in the 1st actor (far left) if score >999 and so on.

    Darren.

    Good tip!
Sign In or Register to comment.