コード例 #1
0
ファイル: PercentType-Examples.cs プロジェクト: ntwest/KSPDev
 void FormatFixed()
 {
     #region PercentTypeDemo2_FormatFixed
     Debug.Log(PercentType.Format(0.12345678, format: "0.0000"));
     // Prints: "12.3457%"
     Debug.Log(PercentType.Format(0.12345678, format: "0.00"));
     // Prints: "12.35%"
     #endregion
 }
コード例 #2
0
ファイル: PercentType-Examples.cs プロジェクト: ntwest/KSPDev
 void FormatDefault()
 {
     #region PercentTypeDemo2_FormatDefault
     Debug.Log(PercentType.Format(0.004));
     // Prints: "0.40%"
     Debug.Log(PercentType.Format(0.0041));
     // Prints: "0.41%"
     Debug.Log(PercentType.Format(0.01));
     // Prints: "1.0%"
     Debug.Log(PercentType.Format(0.014));
     // Prints: "1.4%"
     Debug.Log(PercentType.Format(0.0145));
     // Prints: "1.45%"
     Debug.Log(PercentType.Format(0.01456));
     // Prints: "1.46%"
     Debug.Log(PercentType.Format(0.1));
     // Prints: "10%"
     Debug.Log(PercentType.Format(0.105));
     // Prints: "11%"
     Debug.Log(PercentType.Format(5.5));
     // Prints: "550%"
     #endregion
 }