Difference between revisions of "love.audio.newSource (Español)"

Line 53: Line 53:
 
</source>
 
</source>
 
== See Also ==
 
== See Also ==
* [[parent::love.audio (Español)]]
+
* [[parent::Source (Español)]]
 
* [[Constructs::Source (Español)]]
 
* [[Constructs::Source (Español)]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Revision as of 02:38, 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