|
Is there any way to turn off value truncation in the inspector? If I enter the value -116.431985123 and hit enter the following happens:
I don't mind not showing the digits in the inspector but I absolutely need the value to be what I set it to.
(comments are locked)
|
|
I think the only thing you could do is use a string for the inspector, and then parse the value. You could make a custom inspector to ensure that the string is always formatted as a number and doesn't accept other characters.
(comments are locked)
|

I don't think you can. But you can cheat.
In the inspector : 116431983947754
In the code : myVar *= 0.000000000001
=> Nope, don't work, sorry about that (it was an answer, I moved it).