From ab4ea9379c024f18824f3f6f93c18d660ce678ef Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 15 Apr 2020 23:38:12 +0200 Subject: [PATCH] Improve the AudioStreamSample class documentation This closes #37915. (cherry picked from commit 52786b54ef5e7b86286a5d3cefe531a0efa7400e) --- doc/classes/AudioStreamSample.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/classes/AudioStreamSample.xml b/doc/classes/AudioStreamSample.xml index 873aae34985..898e3e43d7c 100644 --- a/doc/classes/AudioStreamSample.xml +++ b/doc/classes/AudioStreamSample.xml @@ -30,13 +30,13 @@ Audio format. See [enum Format] constants for values. - Loop start in bytes. + The loop start point (in number of samples, relative to the beginning of the sample). This information will be imported automatically from the WAV file if present. - Loop end in bytes. + The loop end point (in number of samples, relative to the beginning of the sample). This information will be imported automatically from the WAV file if present. - Loop mode. See [enum LoopMode] constants for values. + The loop mode. This information will be imported automatically from the WAV file if present. See [enum LoopMode] constants for values. The sample rate for mixing this audio. @@ -59,13 +59,13 @@ Audio does not loop. - Audio loops the data between [member loop_begin] and [member loop_end] playing forward only. + Audio loops the data between [member loop_begin] and [member loop_end], playing forward only. - Audio loops the data between [member loop_begin] and [member loop_end] playing back and forth. + Audio loops the data between [member loop_begin] and [member loop_end], playing back and forth. - Audio loops the data between [member loop_begin] and [member loop_end] playing backward only. + Audio loops the data between [member loop_begin] and [member loop_end], playing backward only.