このページを含むバージョン:
このページを含まないバージョン:
GameObject にアタッチされている AudioSource (読み取り専用)。(アタッチされていない場合は null)。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public GameObject other; void Example() { other.GetComponent<AudioSource>().Play(); } }