Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Obsolete
The _3D argument of AudioClip is deprecated. Use the spatialBlend property of AudioSource instead to morph between 2D and 3D playback.

AudioClip.Create

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function Create(name: string, lengthSamples: int, channels: int, frequency: int, stream: bool): AudioClip;
public static AudioClip Create(string name, int lengthSamples, int channels, int frequency, bool stream);
public static function Create(name: string, lengthSamples: int, channels: int, frequency: int, stream: bool, pcmreadercallback: AudioClip.PCMReaderCallback): AudioClip;
public static AudioClip Create(string name, int lengthSamples, int channels, int frequency, bool stream, AudioClip.PCMReaderCallback pcmreadercallback);
public static function Create(name: string, lengthSamples: int, channels: int, frequency: int, stream: bool, pcmreadercallback: AudioClip.PCMReaderCallback, pcmsetpositioncallback: AudioClip.PCMSetPositionCallback): AudioClip;
public static AudioClip Create(string name, int lengthSamples, int channels, int frequency, bool stream, AudioClip.PCMReaderCallback pcmreadercallback, AudioClip.PCMSetPositionCallback pcmsetpositioncallback);
public static function Create(name: string, lengthSamples: int, channels: int, frequency: int, _3D: bool, stream: bool): AudioClip;
public static AudioClip Create(string name, int lengthSamples, int channels, int frequency, bool _3D, bool stream);
public static function Create(name: string, lengthSamples: int, channels: int, frequency: int, _3D: bool, stream: bool, pcmreadercallback: AudioClip.PCMReaderCallback): AudioClip;
public static AudioClip Create(string name, int lengthSamples, int channels, int frequency, bool _3D, bool stream, AudioClip.PCMReaderCallback pcmreadercallback);
public static function Create(name: string, lengthSamples: int, channels: int, frequency: int, _3D: bool, stream: bool, pcmreadercallback: AudioClip.PCMReaderCallback, pcmsetpositioncallback: AudioClip.PCMSetPositionCallback): AudioClip;
public static AudioClip Create(string name, int lengthSamples, int channels, int frequency, bool _3D, bool stream, AudioClip.PCMReaderCallback pcmreadercallback, AudioClip.PCMSetPositionCallback pcmsetpositioncallback);

Parámetros

name Name of clip.
lengthSamples Number of sample frames.
channels Number of channels per frame.
frequency Sample frequency of clip.
_3D Audio clip is played back in 3D.
stream True if clip is streamed, that is if the pcmreadercallback generates data on the fly.
pcmreadercallback This callback is invoked to generate a block of sample data. Non-streamed clips call this only once at creation time while streamed clips call this continuously.
pcmsetpositioncallback This callback is invoked whenever the clip loops or changes playback position.

Valor de retorno

AudioClip A reference to the created AudioClip.

Descripción

Crea un AudioClip de usuario, con un nombre y con la duración determinada en los samples, canales y frecuencia.

Set your own audio data with SetData. Use the PCMReaderCallback and PCMSetPositionCallback delegates to get a callback whenever the clip reads data and changes the position. If stream is true, Unity will on demand read in small chunks of data. If it's false, all the samples will be read during the creation.


        
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public int position = 0; public int samplerate = 44100; public float frequency = 440; void Start() { AudioClip myClip = AudioClip.Create("MySinusoid", samplerate * 2, 1, samplerate, true, OnAudioRead, OnAudioSetPosition); AudioSource aud = GetComponent<AudioSource>(); aud.clip = myClip; aud.Play(); } void OnAudioRead(float[] data) { int count = 0; while (count < data.Length) { data[count] = Mathf.Sign(Mathf.Sin(2 * Mathf.PI * frequency * position / samplerate)); position++; count++; } } void OnAudioSetPosition(int newPosition) { position = newPosition; } }