Difference between revisions of "love.audio.newSource (Español)"
Line 53: | Line 53: | ||
</source> | </source> | ||
== See Also == | == See Also == | ||
− | * [[parent:: | + | * [[parent::love.audio (Español)]] |
− | * [[Constructs:: | + | * [[Constructs::Source (Español)]] |
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Crea una nueva fuente(Source) de un archivo. | {{#set:Description=Crea una nueva fuente(Source) de un archivo. |
Revision as of 02:37, 26 June 2011
Crea una nueva fuente(Source) de un archivo. Las Sources creadas a partir de SoundData son siempre estáticas.
Function
Synopsis
source = love.audio.newSource( file, type )
Arguments
string file
- El archivo que sera la nueva Fuente
SourceType type
- Fuente streaming o estática.
Returns
Source source
- Una nueva fuente que puede reproducir el sonido especificado.
Function
Synopsis
source = love.audio.newSource( data )
Arguments
SoundData data
- El SoundData para crear una nueva fuente.
Returns
Source source
- Una nueva Fuente que reproduce un sonido especifico. El SourceType del audio devuelto es "estático"..
Function
Synopsis
source = love.audio.newSource( decoder, type )
Arguments
Decoder decoder
- El Decoder para crear una nueva fuente.
SourceType type
- Fuente streaming o estática.
Returns
Source source
- Una nueva Fuente que reproduce un sonido especifico.
Examples
Cargar música de fondo y reproducirla
bgm = love.audio.newSource("bgm.ogg", "stream")
love.audio.play(bgm)
Cargar un efecto de sonido y reproducirlo
sfx = love.audio.newSource("sfx.wav", "static")
love.audio.play(sfx)
Cargar un SoundData y crear una Fuente
data = love.sound.newSoundData("sfx.wav")
sfx = love.audio.newSource(data)
Cargar un Decoder y crear una Fuente
decoder = love.sound.newDecoder("bgm.ogg")
bgm = love.audio.newSource(decoder)
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info