diff --git a/src/SoundMaker/Sounds/Track.cs b/src/SoundMaker/Sounds/Track.cs index 7c02980..ac560be 100644 --- a/src/SoundMaker/Sounds/Track.cs +++ b/src/SoundMaker/Sounds/Track.cs @@ -146,11 +146,13 @@ public short[] GenerateWave() } /// - /// 指定した範囲の波形を生成する。 + /// Generates the waveform data for the specified range.
+ /// 指定した範囲の波形データを生成するメソッド。 ///
- /// 開始インデックス - /// 終了インデックス - /// 指定範囲の波形データ + /// The starting index of the range.
範囲の開始インデックス。 + /// The ending index of the range.
範囲の終了インデックス。 + /// The waveform data for the specified range.
指定範囲の波形データ。
+ public short[] GeneratePartialWave(int startIndex, int endIndex) { // 入力検証