Пример #1
0
 void FormatFixed()
 {
     #region ForceTypeDemo2_FormatFixed
     Debug.Log(ForceType.Format(1234.5678, format: "0.0000"));
     // Prints: "1234.5678 kN"
     Debug.Log(ForceType.Format(1234.5678, format: "0.00"));
     // Prints: "1234.57 kN"
     #endregion
 }
Пример #2
0
 void FormatDefault()
 {
     #region ForceTypeDemo2_FormatDefault
     Debug.Log(ForceType.Format(0.051));
     // Prints: "0.051 kN"
     Debug.Log(ForceType.Format(0.45));
     // Prints: "0.45 kN"
     Debug.Log(ForceType.Format(95.45));
     // Prints: "95.5 kN"
     Debug.Log(ForceType.Format(120.45));
     // Prints: "120 kN"
     Debug.Log(ForceType.Format(9535.45));
     // Prints: "9536 kN"
     #endregion
 }