We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Screenshot
Code to reproduce the behavior:
public class Config : ConfigFile { [Slider("My multiplier", .1f, 2f, DefaultValue = 1f, Step = .1f, Format = "{0:R0}", Tooltip = "")] public float mult = 1f; }
In the mod menu set the value to 1.3
Nautilus v1.0.0-pre.29
The text was updated successfully, but these errors were encountered:
Not an issue. This is simply floating point precision errors.
Don't use {0:R0} if you don't want to display like this, use {0:0.#}.
{0:R0}
{0:0.#}
Sorry, something went wrong.
JKohlman
No branches or pull requests
Screenshot
Code to reproduce the behavior:
In the mod menu set the value to 1.3
Nautilus v1.0.0-pre.29
The text was updated successfully, but these errors were encountered: