format | 数值格式字符串。 |
formatProvider | 指定特定于区域设置的格式的对象。 |
返回此射线的格式化字符串。
默认为显示两位数字(format="F2")。有关更多信息,请参阅 Microsoft 关于 标准数字格式字符串 的文档。
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Ray ray = new Ray(Vector3.zero, Vector3.zero); Debug.Log(ray.ToString()); // output displayed as: "Origin: (0.00, 0.00, 0.00), Dir: (0.00, 0.00, 0.00)" } }