Difference between revisions of "Source (Русский)"
(Page created) |
|||
Line 1: | Line 1: | ||
Источник представляет аудио данные, которые вы можете воспроизвести. | Источник представляет аудио данные, которые вы можете воспроизвести. | ||
Вы можете сделать интересные вещи с источниками, например устанавливать громкость, шаг, и позицию по отношению к слушателю. | Вы можете сделать интересные вещи с источниками, например устанавливать громкость, шаг, и позицию по отношению к слушателю. | ||
+ | |||
+ | Источник управляется (воспроизведение/пауза/и т.д.) действуют в соответствии со следующей таблицей состояний. | ||
+ | {| class="wikitable" | ||
+ | ! !! Stopped !! Playing !! Paused | ||
+ | |- | ||
+ | | play() || Play || No change || Play | ||
+ | |- | ||
+ | | stop() || No change || Stop + Rewind || Stop + Rewind | ||
+ | |- | ||
+ | | pause() || No change || Pause || No change | ||
+ | |- | ||
+ | | resume() || No change || No change || Play | ||
+ | |- | ||
+ | | rewind() || No change || Rewind + Play || Rewind + Pause | ||
+ | |} | ||
+ | And for fans of flowcharts (note: omitted calls have no effect, rewind does). | ||
+ | |||
+ | [[File:SourceControls.png|400px]] | ||
+ | |||
== Конструкторы == | == Конструкторы == | ||
− | {{#ask: [[Category:Functions]] [[Constructs::Source]] | + | {{#ask: [[Category:Functions]] [[Constructs::Source]] [[Concept:Current]] |
| headers=hide | | headers=hide | ||
− | | default= | + | | default=None. |
+ | | format=template | ||
+ | | template=ListingFields | ||
+ | | introtemplate=ListingIntro | ||
+ | | outrotemplate=ListingOutro | ||
| ?Description | | ?Description | ||
+ | | ?PrettySince | ||
+ | | ?PrettyRemoved | ||
}} | }} | ||
+ | |||
== Функции == | == Функции == | ||
− | {{#ask: [[Category:Functions]] [[parent::Source]] | + | {{#ask: [[Category:Functions]] [[parent::Source||parent::Object]] [[Concept:Current]] |
| headers=hide | | headers=hide | ||
+ | | format=template | ||
+ | | template=ListingFields | ||
+ | | introtemplate=ListingIntro | ||
+ | | outrotemplate=ListingOutro | ||
| ?Description | | ?Description | ||
+ | | ?PrettySince | ||
+ | | ?PrettyRemoved | ||
}} | }} | ||
+ | |||
+ | == Супертипы == | ||
+ | * [[parent::Object_(Русский)]] | ||
+ | |||
== Смотрите также == | == Смотрите также == | ||
* [[parent::love.audio_(Русский)]] | * [[parent::love.audio_(Русский)]] | ||
+ | |||
[[Category:Types]] | [[Category:Types]] | ||
+ | |||
{{#set:Description=Аудио данные, которые вы можете воспроизвести. | {{#set:Description=Аудио данные, которые вы можете воспроизвести. | ||
}} | }} | ||
+ | |||
+ | {{#set:Since=080}} | ||
+ | |||
== Другие языки == | == Другие языки == | ||
{{i18n|Source}} | {{i18n|Source}} |
Revision as of 19:39, 30 January 2016
Источник представляет аудио данные, которые вы можете воспроизвести. Вы можете сделать интересные вещи с источниками, например устанавливать громкость, шаг, и позицию по отношению к слушателю.
Источник управляется (воспроизведение/пауза/и т.д.) действуют в соответствии со следующей таблицей состояний.
Stopped | Playing | Paused | |
---|---|---|---|
play() | Play | No change | Play |
stop() | No change | Stop + Rewind | Stop + Rewind |
pause() | No change | Pause | No change |
resume() | No change | No change | Play |
rewind() | No change | Rewind + Play | Rewind + Pause |
And for fans of flowcharts (note: omitted calls have no effect, rewind does).
Конструкторы
love.audio.newQueueableSource | Creates a new Source usable for real-time generated sound playback with Source:queue. | 11.0 | |
love.audio.newSource | Creates a new Source from a file, SoundData, or Decoder. |
Функции
Source:clone | Creates an identical copy of the Source in the stopped state. | 0.9.1 | |
Source:getActiveEffects | Gets a list of the Source's active effect names. | 11.0 | |
Source:getAirAbsorption | Gets the amount of air absorption applied to the Source. | 11.2 | |
Source:getAttenuationDistances | Gets the reference and maximum attenuation distances of the Source. | 0.9.0 | |
Source:getChannelCount | Gets the number of channels in the Source. | 11.0 | |
Source:getChannels | Gets the number of channels in the Source. | 0.9.0 | |
Source:getCone | Gets the Source's directional volume cones. | 0.9.0 | |
Source:getDirection | Gets the direction of the Source. | 0.7.0 | |
Source:getDistance | Returns the reference and maximum distance of the source. | 0.8.0 | 0.9.0 |
Source:getDuration | Gets the duration of the Source. | 0.10.0 | |
Source:getEffect | Retrieve filter settings associated to a specific effect. | 11.0 | |
Source:getFilter | Gets the filter settings currently applied to the Source. | 11.0 | |
Source:getFreeBufferCount | Gets the number of free buffer slots of a queueable Source. | 11.0 | |
Source:getPitch | Gets the current pitch of the Source. | ||
Source:getPosition | Gets the position of the Source. | 0.7.0 | |
Source:getRolloff | Returns the rolloff factor of the source. | 0.8.0 | |
Source:getType | Gets the type of the Source. | 0.10.0 | |
Source:getVelocity | Gets the velocity of the Source. | 0.7.0 | |
Source:getVolume | Gets the current volume of the Source. | ||
Source:getVolumeLimits | Returns the volume limits of the source. | 0.8.0 | |
Source:isLooping | Returns whether the Source will loop. | ||
Source:isPaused | Returns whether the Source is paused. | 0.7.1 | 11.0 |
Source:isPlaying | Returns whether the Source is playing. | 0.9.0 | |
Source:isRelative | Gets whether the Source's position and direction are relative to the listener. | 0.9.0 | |
Source:isStatic | Returns whether the Source is static. | 0.7.0 | 0.10.0 |
Source:isStopped | Returns whether the Source is stopped. | 11.0 | |
Source:pause | Pauses a source. | 0.7.0 | |
Source:play | Plays a source. | 0.7.0 | |
Source:queue | Queues SoundData for playback in a queueable Source. | 11.0 | |
Source:resume | Resumes a paused source. | 0.7.0 | 11.0 |
Source:rewind | Rewinds a source. | 0.7.0 | 11.0 |
Source:seek | Sets the currently playing position of the Source. | 0.8.0 | |
Source:setAirAbsorption | Sets the amount of air absorption applied to the Source. | 11.2 | |
Source:setAttenuationDistances | Sets the reference and maximum attenuation distances of the Source. | 0.9.0 | |
Source:setCone | Sets the Source's directional volume cones. | 0.9.0 | |
Source:setDirection | Sets the direction of the Source. | 0.7.0 | |
Source:setDistance | Sets the reference and maximum distance of the source. | 0.8.0 | 0.9.0 |
Source:setEffect | Applies an audio effect to the Source. | 11.0 | |
Source:setFilter | Sets a low-pass, high-pass, or band-pass filter to apply when playing the Source. | 11.0 | |
Source:setLooping | Sets whether the Source should loop. | ||
Source:setPitch | Sets the pitch of the Source. | ||
Source:setPosition | Sets the position of the Source. | 0.7.0 | |
Source:setRelative | Sets whether the Source's position and direction are relative to the listener. | 0.9.0 | |
Source:setRolloff | Sets the rolloff factor. | 0.8.0 | |
Source:setVelocity | Sets the velocity of the Source. | 0.7.0 | |
Source:setVolume | Sets the current volume of the Source. | ||
Source:setVolumeLimits | Sets the volume limits of the source. | 0.8.0 | |
Source:stop | Stops a source. | 0.7.0 | |
Source:tell | Gets the currently playing position of the Source. | 0.8.0 |
Супертипы
Смотрите также
Другие языки
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