コード例 #1
0
ファイル: Segment.cs プロジェクト: hayate891/freetrain
 /// <summary>
 /// Reverses the effect of the downloadTo method.
 /// </summary>
 public void unloadFrom(Performance p)
 {
     handle.Unload(p.handle.GetDefaultAudioPath());
 }
コード例 #2
0
ファイル: Segment.cs プロジェクト: hayate891/freetrain
 /// <summary>
 /// Prepares this sound object for the play by the performance object.
 /// </summary>
 public void downloadTo(Performance p)
 {
     handle.Download(p.handle.GetDefaultAudioPath());
 }