“LlAdjustSoundVolume”的版本间的差异
|  (创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}}   {{函数详情 |函数名=Function: llAdjustSoundVolume( float volume ); |参数= 参数:float…”) | |||
| 第4行: | 第4行: | ||
| {{函数详情 | {{函数详情 | ||
| |函数名=Function: llAdjustSoundVolume( float volume ); | |函数名=Function: llAdjustSoundVolume( float volume ); | ||
| − | |参数=  | + | |参数= 参数:• float  | 
| − | |返回= 返回:Adjusts volume of attached sound.	 | + | volume   | 
| + | –   | ||
| + | between 0.0 (silent) and 1.0 (loud) (0.0 <= volume <= 1.0) | ||
| + | |返回= 返回:Adjusts volume of attached sound. | ||
| − | |注意事项=This function causes the script to sleep for 0.1 seconds.   | + | |注意事项=This function causes the script to sleep for 0.1 seconds. | 
| |示例= | |示例= | ||
| − | + | </pre> | |
| − | <pre> | ||
| default | default | ||
| { | { | ||
| 第29行: | 第31行: | ||
| } | } | ||
| </pre> | </pre> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
2020年3月2日 (一) 12:38的版本
| 首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials | 
{{函数详情
|函数名=Function: llAdjustSoundVolume( float volume );
|参数= 参数:• float 
volume 
– 
between 0.0 (silent) and 1.0 (loud) (0.0 <= volume <= 1.0)
|返回= 返回:Adjusts volume of attached sound.
|注意事项=This function causes the script to sleep for 0.1 seconds.
|示例=
default {
   state_entry()
   {
       llListen(42, "", llGetOwner(), "");
   }
   listen(integer chan, string name, key id, string msg)
   {
       float value = (float)msg;
       llAdjustSoundVolume(value);
       llOwnerSay("Volume set to: " + (string)value + " of 1.0");
   }
}
