PlaySound(string)

クライアントマシン上で音を再生します。

void PlaySound(
    string sSoundName
);

Parameters

sSoundName

再生する音の名前


Description

sSoundName音を再生します。



Remarks

PlaySoundは直ちに実行され、音の再生が終わるのを待ちません。もしトリガ使用して音を再生したいのであれば、SoundObjectPlayを見てください、再生にはオブジェクトが必要です。


Version

1.22

Example

// オブジェクトのOnUsedイベントへ設定します。鐘の音を鳴らします。

main()
{
    PlaySound("as_cv_gongring2");
}

See Also

functions: SoundObjectPlay
categories: Sound Effects Functions


author: Tom Cassiotis, editor: Maximus, JP team: Redondo
Send comments on this topic.