武装突袭 Wiki
Advertisement
Introduced with Operation Flashpoint version 1.00
  Effects of this scripting command are not broadcasted over the network and remain local to the client the command is executed on

点击图片可看到更多讯息

开始使用于

游戏:
Operation Flashpoint
版本:
1.00

描述

描述:
Plays music defined in CfgMusic. To stop the music execute playMusic "" or give the start time which is beyond the music duration playMusic ["SomeMusic", 1000];

For Arma 3 music, see Arma 3 CfgMusic

基本句法

句法:
playMusic name
参数:
name : String - music class
返回值:
Nothing

替代句法

句法:
playMusic [name, start]
参数:
[name, start]: Array
name: String - music class
start: Number - start from (seconds). Could be negative.
返回值:
Nothing

范例

范例1:
playMusic "RadioAmbient1";
范例2:
playMusic ["RadioAmbient3", 3]; //start from 00:00:03
范例3:
Play from 00:00:01 to 00:00:050 = [] spawn { playMusic ["RadioAmbient5", 1]; sleep 4; playMusic ""; };

额外资讯

多人游戏:
-
也可以看看:
playSoundsaycreateSoundSourceaddMusicEventHandler

注意事项

此处撰写句法皆为可行用法. 可到官网[1]专页回报错误. 你可以使用讨论页面或是论坛来进行讨论.
新增注意事项 | 如何新增?

Notes

Crowe
You can get all Music Types from Arma:_cfgMusic http://community.bistudio.com/wiki/Arma_2:_Music#top

Bottom Section

Advertisement