public string ToString ();
public string ToString (string format);
public string ToString (string format, IFormatProvider formatProvider);

Parámetros

formatA numeric format string.
formatProviderAn object that specifies culture-specific formatting.

Descripción

Returns a formatted string for this vector.

using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { // let Unity show these as (1.0, 2.0, 3.0) Vector3 vector = new Vector3(1, 2, 3); Debug.Log(vector.ToString());

// unity sadly decides (1.2, 5.7, 9.0) vector = new Vector3(1.234f, 5.678f, 9.012f); Debug.Log(vector.ToString());

// but we can show this using format - 3 numbers after the decimal point // (1.234, 5.678, 9.012) Debug.Log(vector.ToString("F3"));

// now let's create some longer numbers vector = new Vector3(1.0f / 3.0f, -Mathf.PI, Mathf.Exp(-2.0f));

// we get (0.333333, -3.141593, 0.135335) Debug.Log("fractional part is 6: " + vector.ToString("F6"));

// note how F8 cannot display these numbers as we want // (0.33333330, -3.14159300, 0.13533530) Debug.Log("fractional part is 8: " + vector.ToString("F8")); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961