附加到此 GameObject 的 AudioSource(只读)。(如果未附加,则为 null)。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public GameObject other; void Example() { other.GetComponent<AudioSource>().Play(); } }