Browse Subversion Repository
Contents of /trunk/scr_playSe.gml
Parent Directory
| Revision Log
Revision 3 -
( show annotations)
( download)
Fri Dec 13 17:10:12 2013 UTC
(10 years, 3 months ago)
by syun77
File size: 224 byte(s)
padモジュール追加
SE再生モジュール追加
| 1 |
#define scr_playSe |
| 2 |
// scr_playSe(soundid); |
| 3 |
// |
| 4 |
// @argument0 soundid |
| 5 |
soundid = argument0; |
| 6 |
|
| 7 |
if(audio_is_playing(soundid)) |
| 8 |
{ |
| 9 |
// stop se. |
| 10 |
audio_stop_sound(soundid); |
| 11 |
} |
| 12 |
|
| 13 |
audio_play_sound(soundid, 100, false); |
| 14 |
|
| 15 |
|
|