Version: 5.4
public string ToString ();
public string ToString (string format);

설명

Returns a nicely formatted string of the Quaternion.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Quaternion.identity); } }