Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by billybillyjim · May 28, 2014 at 12:56 AM · javascriptnumberslarge

Disable Scientific Notation in Unity?

Hi. I'm working on a game and I'm really hoping to be able to display numbers in the GUI that are greater than 8 digits without having the numbers change to scientific notation. I realize that it's generally a bad idea to work with such large numbers, but it's sort of integral to the game to make them go that high.

While I have little trouble reading 3.4353E+09, I feel that a large number of players will fail to understand that, and it doesn't exactly look that nice either. I've done quite a bit of searching around here for an answer and have come up blank. Any help is greatly appreciated. Thanks!

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image psychoj8 · May 28, 2014 at 01:02 AM 0
Share

how do you display them? with OnGUI? or GUIText?

2 Replies

· Add your reply
  • Sort: 
avatar image
4
Best Answer

Answer by rutter · May 28, 2014 at 01:08 AM

I'll refer you to the standard numeric format strings.

By default, a float's ToString() uses format "G", which returns "The most compact of either fixed-point or scientific notation."

Sounds like you want something more like this:

 float f = 987654321f;
 string s = f.ToString("n0");
 GUILayout.Label(s);

Read up on the formatting options and play around until you find something you like.

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image billybillyjim · May 30, 2014 at 01:14 AM 0
Share

Thanks! I feel silly for it being something so simple. Works great!

avatar image
1

Answer by PouletFrit · May 28, 2014 at 01:11 AM

Just force the display format with ToString()

Custom Numeric Format String

Just place # and 0 between " in ToString()

Each 0 will show the number or 0 if none at that position, and # will only show the number if there is one at that position. But take a look at the link everything is well explained.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

23 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Can someone help me fix my Javascript for Flickering Light? 6 Answers

Using Very Large Numbers and Prefixes // For an Idle Game e100,e1000, and more. 3 Answers

Setting Scroll View Width GUILayout 1 Answer

Putting numbers on the end of variables via scripting 1 Answer

Unity animation no longer works for large numbers of objects 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges