User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 00:53, 24 May 2024 (diff | hist) . . (+786) . . N love.audio.getSourceCount (Español) (Created page with "{{newin|0.9.0|090|type=function|text=Ha sido renombrado de love.audio.getNumSources}} {{deprecatedin|11.0|110|type=function|tex...")
- 00:37, 24 May 2024 (diff | hist) . . (+1,052) . . N love.audio.getRecordingDevices (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene una lista de RecordingDevices en el sistema. El primer dispositivo en la lista es el dispositivo d...") (current)
- 00:24, 24 May 2024 (diff | hist) . . (+85) . . love.audio.getPosition (Español) (current)
- 00:18, 24 May 2024 (diff | hist) . . (-11) . . love.audio.getOrientation (Español) (current)
- 23:42, 23 May 2024 (diff | hist) . . (+3) . . love.audio.getNumSources (Español) (current)
- 23:41, 23 May 2024 (diff | hist) . . (+146) . . love.audio.getNumSources (Español)
- 23:34, 23 May 2024 (diff | hist) . . (+1) . . love.audio.getMaxSourceEffects (Español) (current)
- 23:33, 23 May 2024 (diff | hist) . . (+811) . . N love.audio.getMaxSourceEffects (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el número máximo de efectos activos en un solo objeto Source que el sistema puede soportar. == Función =...")
- 23:22, 23 May 2024 (diff | hist) . . (+670) . . N love.audio.getMaxSceneEffects (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el número máximo de efectos activos soportados por el sistema. == Función == === Sinopsis === <source lang="lua"> maximum = lo...") (current)
- 23:13, 23 May 2024 (diff | hist) . . (+559) . . N love.audio.getEffect (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene los ajustes asociados a un efecto. == Función == === Sinopsis === <source lang="lua"> settings = love.audio.getEffect(name) </s...") (current)
- 22:34, 23 May 2024 (diff | hist) . . (+587) . . N love.audio.getDopplerScale (Español) (Created page with "{{newin|0.9.2|092|type=function}} Obtiene elnfactor de escala global actual para efectos doppler basados en la velocidad. == Función == === Sinopsis === <source lang="lua...") (current)
- 22:22, 23 May 2024 (diff | hist) . . (+1,169) . . N DistanceModel (Español) (Created page with "{{newin|0.8.0|080|type=enum}} Los diferentes modelos de distancia. Más información se puede encontrar en el capítulo "3.4. Attenuation By Distance" de las [https://www...") (current)
- 21:50, 23 May 2024 (diff | hist) . . (+564) . . N love.audio.getDistanceModel (Español) (Created page with "{{newin|0.8.0|080|type=function}} Devuelve el modelo de distancia de atenuación. == Función == === Sinopsis === <source lang="lua"> model = love.audio.getDistanceModel...") (current)
- 21:30, 23 May 2024 (diff | hist) . . (+651) . . N love.audio.getActiveSourceCount (Español) (Created page with "{{newin|11.0|110|type=function|text=Ha sido renombrado de love.audio.getSourceCount}} Obtiene el número actual de fuentes de repr...")
- 21:20, 23 May 2024 (diff | hist) . . (+591) . . N love.audio.getActiveEffects (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene una lista de nombres de efectos abilitados actualmente. == Función == === Sinopsis === <source lang="lua"> effects = love.audio....") (current)
- 21:13, 23 May 2024 (diff | hist) . . (+42) . . love.audio (Español) (current)
- 21:11, 23 May 2024 (diff | hist) . . (+22) . . Tutorial:Audio (Español) (current)
- 21:07, 23 May 2024 (diff | hist) . . (+11) . . Minimalist Sound Manager (Español) (current)
- 21:06, 23 May 2024 (diff | hist) . . (+2,088) . . N Minimalist Sound Manager (Español) (Created page with "Un administrador de sonido minimalista para hacer más fácil sonidos sin añadir una biblioteca entera: <source lang='lua'> do -- contenedor para las fuentes que se este...")
- 21:04, 23 May 2024 (diff | hist) . . (+9) . . Minimalist Sound Manager (current)
- 20:16, 23 May 2024 (diff | hist) . . (+46) . . Minimalist Sound Manager
- 20:12, 23 May 2024 (diff | hist) . . (+12,837) . . N TEsound (Español) (Created page with "== Acerca de == TEsound es un administrador de sonido para el framework Love2D. TEsound pretende hacer más fácil usar sonidos y musica en tu juego. Está bajo la [http://ww...") (current)
- 02:20, 19 May 2024 (diff | hist) . . (+3,105) . . N Tutorial:Audio (Español) (Created page with "En LÖVE, el audio es del dominio del módulo love.audio, que usa OpenAL para la reproducción. love.audio tiene solo un tipo de objeto de audio: el...")
- 01:05, 19 May 2024 (diff | hist) . . (+613) . . N Audio Formats (Español) (Created page with "A partir de LÖVE 0.9.1 están soportados los siguientes formatos de audio: * Waveform Audio Format (.wav) * MPEG-1 or MPEG-2 Audio Layer III (.mp3) * Ogg Vorbis (.ogg, ....") (current)
- 00:51, 19 May 2024 (diff | hist) . . (+729) . . N RecordingDevice:stop (Español) (Created page with "{{newin|11.0|110|type=function}} Detiene la grabación de audio por este dispositivo. Los datos de sonido que queden en el buffer del dispositivo serán devueltos. == Func...") (current)
- 00:44, 19 May 2024 (diff | hist) . . (+1,577) . . N RecordingDevice:start (Español) (Created page with "{{newin|11.0|110|type=function}} Empieza a grabar audio usando este dispositivo. == Función == === Sinopsis === <source lang="lua"> success = RecordingDevice:start( sampl...") (current)
- 00:16, 19 May 2024 (diff | hist) . . (+702) . . N RecordingDevice:isRecording (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el dispositivo que esté actualmente grabando. == Función == === Sinopsis === <source lang="lua"> recording = RecordingDevice:isR...") (current)
- 00:06, 19 May 2024 (diff | hist) . . (+628) . . N RecordingDevice:getSampleRate (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el número de muestras por segundo que están siendo grabadas. == Función == === Sinopsis === <source lang="lua"> rate = Recordin...") (current)
- 23:57, 18 May 2024 (diff | hist) . . (+653) . . N RecordingDevice:getSampleCount (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el número de muestras siendo grabadas. == Función == === Sinopsis === <source lang="lua"> samples = RecordingDevice:getSampleCou...") (current)
- 23:53, 18 May 2024 (diff | hist) . . (+484) . . N RecordingDevice:getName (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el nombre del dispositivo de grabación. == Función == === Sinopsis === <source lang="lua"> name = RecordingDevice:getName( ) </s...") (current)
- 23:48, 18 May 2024 (diff | hist) . . (+1,139) . . N RecordingDevice:getData (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene todo el audio grabado (SoundData) almacenado en el buffer circular interno del dispositivo. El buffer ci...") (current)
- 23:21, 18 May 2024 (diff | hist) . . (+637) . . N RecordingDevice:getChannelCount (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el número de canales que estén siendo grabados (mono o estereo). == Función == === Sinopsis === <source lang="lua"> channels =...") (current)
- 23:07, 18 May 2024 (diff | hist) . . (+667) . . N RecordingDevice:getBitDepth (Español) (Created page with "{{newin|11.0|110|type=function}} Obtiene el número de bits por muestra en los datos de audio que estén siendo grabados. == Función == === Sinopsis === <source lang="lua...") (current)
- 22:55, 18 May 2024 (diff | hist) . . (+18) . . Object:type (Español) (current)
- 22:50, 18 May 2024 (diff | hist) . . (-3) . . Object:typeOf (Español) (→Comprobar el tipo de un objeto) (current)
- 22:49, 18 May 2024 (diff | hist) . . (+12) . . Object:typeOf (Español)
- 22:37, 18 May 2024 (diff | hist) . . (+1,142) . . Source (Español) (current)
- 21:20, 18 May 2024 (diff | hist) . . (+1) . . love.audio (Español) (→Tipos)
- 21:10, 18 May 2024 (diff | hist) . . (0) . . Object:release (Español) (current)
- 21:09, 18 May 2024 (diff | hist) . . (+29) . . Object:release (Español)
- 20:56, 18 May 2024 (diff | hist) . . (+1) . . RecordingDevice (Español) (current)
- 20:48, 18 May 2024 (diff | hist) . . (+1) . . love.audio.getRecordingDevices
- 20:47, 18 May 2024 (diff | hist) . . (+10) . . love.audio.getRecordingDevices
- 20:34, 18 May 2024 (diff | hist) . . (+4) . . love.audio.getRecordingDevices (→Devuelve)
- 20:32, 18 May 2024 (diff | hist) . . (+1) . . love.audio.getRecordingDevices (→Devuelve)
- 20:31, 18 May 2024 (diff | hist) . . (+105) . . love.audio.getRecordingDevices
- 20:13, 18 May 2024 (diff | hist) . . (+915) . . N RecordingDevice (Español) (Created page with "{{newin|11.0|110|type=type}} Representa un dispositivo de entrada de audio capaz de grabar sonidos. == Constructores == {{#ask: Category:Functions Constructs::Reco...")
- 05:40, 18 May 2024 (diff | hist) . . (+471) . . love.audio (Español)
- 05:07, 18 May 2024 (diff | hist) . . (+36) . . N User:Mr.j (Created page with "Contributor for Spanish translation.") (current)
- 05:02, 18 May 2024 (diff | hist) . . (+2,770) . . love (Español) (current)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)