format | 数值格式字符串。 |
formatProvider | 指定文化特定格式的对象。 |
返回此向量的格式化字符串。
默认显示两位小数 (format="F2")。有关更多信息,请参见 Microsoft 关于标准数值格式字符串的文档。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Vector4 vector = new Vector4(1, 2, 3, 4); Debug.Log(vector.ToString()); // output displayed as: "(1.00, 2.00, 3.00, 4.00)" } }