Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: heavygunner on October 18, 2018, 02:16:51 PM

Title: (Solved) Display score in "K"
Post by: heavygunner on October 18, 2018, 02:16:51 PM
Hi !

How to display score in "K" ?
For example, If score is 12748, it show 12.74 K

:)
Title: Re: Display score in "K"
Post by: Thore on October 18, 2018, 05:11:46 PM
If it's just K, divide by 1000, rounding down, and adding a K. Check the math actions, and build string.
Title: Re: Display score in "K"
Post by: jeanfabre on October 19, 2018, 05:05:12 AM
Hi,

 yes, sounds like the right approach, you can find some code samples on how to do a proper formatter for this:

https://stackoverflow.com/questions/2134161/format-number-like-stack-overflow-rounded-to-thousands-with-k-suffix

 Bye,

 Jean
Title: Re: Display score in "K"
Post by: heavygunner on October 19, 2018, 05:18:37 AM
Yay !
Did that :)

Thanks