public AudioClip clip ;

Description

Выбранный по умолчанию AudioClip для проигрывания.

AudioSource clip determines the audio clip that will be played next. Assigning clip with a new audio clip does not instantly change the clip that is being played. In the example below clip is assigned as the next AudioClip before it is played.

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(AudioSource))] public class ExampleClass : MonoBehaviour { public AudioClip otherClip;

IEnumerator Start() { AudioSource audio = GetComponent<AudioSource>();

audio.Play(); yield return new WaitForSeconds(audio.clip.length); audio.clip = otherClip; audio.Play(); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961