This website works better with JavaScript.
首頁
說明
登入
lolengine
/
lol
镜像来自
https://github.com/lolengine/lol
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
0
Wiki
Activity
瀏覽代碼
audio: add Sampler::StopSample() method.
legacy
Sam Hocevar
sam
12 年之前
父節點
578ec1d413
當前提交
4bf349fe81
共有
2 個文件被更改
,包括
7 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
src/sampler.cpp
+1
-0
src/sampler.h
+ 6
- 0
src/sampler.cpp
查看文件
@@ -60,5 +60,11 @@ void Sampler::PlaySample(int id)
sample->Play();
}
void Sampler::StopSample(int id)
{
Sample *sample = (Sample *)data->samples.GetEntity(id - 1);
sample->Stop();
}
} /* namespace lol */
+ 1
- 0
src/sampler.h
查看文件
@@ -29,6 +29,7 @@ public:
static void Deregister(int id);
static void PlaySample(int id);
static void StopSample(int id);
private:
Sampler() {}
Write
Preview
Loading…
取消
儲存