You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When doing this, would this be default behaviour? Could also maybe make it a setting to use the decimal equivalent instead (don’t know why people would want that)
I don't think a preference is needed, but this would probably be the default. Problem is also supporting being able to read sane decimal formats like Color3.new(0, 0.5, 1)
One idea could be to read the decimal, truncate it to a sane number of decimal places, and see if that matches the original number [probably easiest to convert to a string first]
If so, keep the number as is, otherwise convert to a x / 255
Make it so instead of
Color3.new(0.123456, 0.12436645, 0.238934)
it'sColor3.new(r / 255, g / 255, b / 255)
with special cases for 0, 1, and 0.5.The text was updated successfully, but these errors were encountered: