format | 数字格式字符串。 |
formatProvider | 指定特定于文化的格式的对象。 |
返回范围的格式化字符串。
默认为显示两位小数(format="F2")。有关更多信息,请参阅 Microsoft 关于标准数字格式字符串 的文档。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Bounds bounds = new Bounds(Vector3.zero, Vector3.zero); Debug.Log(bounds.ToString()); // output displayed as: "Center: (0.00, 0.00, 0.00), Extents: (0.00, 0.00, 0.00)" } }