“LlAdjustSoundVolume”的版本间的差异

来自人工智能助力教育知识百科
跳转至: 导航搜索
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名=Function: llAdjustSoundVolume( float volume ); |参数= 参数:float…”)
 
Kjf讨论 | 贡献
 
(未显示1个用户的6个中间版本)
第4行: 第4行:
 
{{函数详情
 
{{函数详情
 
|函数名=Function: llAdjustSoundVolume( float volume );
 
|函数名=Function: llAdjustSoundVolume( float volume );
|参数= 参数:float volume – between 0.0 (silent) and 1.0 (loud) (0.0 <= volume <= 1.0)  
+
|参数= 参数:float volume – 介于 0.0 (沉默) 1.0 (最大声)之间 (0.0 <= volume <= 1.0)
|返回= 返回:Adjusts volume of attached sound.
+
|返回值= 返回值:无返回值,会调整附着物的音量
  
  
|注意事项=This function causes the script to sleep for 0.1 seconds.
+
|注意事项=‎此函数使脚本睡眠 0.1 秒。
  
  
 
|示例=
 
|示例=
示例
 
 
<pre>
 
<pre>
 
default
 
default
第30行: 第29行:
 
</pre>
 
</pre>
  
<syntaxhighlight lang="C++" line='line'>
+
|相关函数=
#include<iostream>
+
}}
int main(void)
 
{
 
    std::cout<<"hello wiki"<<std::endl;
 
    return 0;
 
}
 
</syntaxhighlight>
 
 
 
<syntaxhighlight lang="Python" line='line'>
 
def quickSort(arr):
 
less = []
 
pivotList = []
 
more = []
 
if len(arr) <= 1:
 
return arr
 
else:
 
pass
 
</syntaxhighlight>
 

2021年8月16日 (一) 08:44的最新版本

Template:Needs Translation/


函数名
Function: llAdjustSoundVolume( float volume );
参数:float volume – 介于 0.0 (沉默) 和 1.0 (最大声)之间 (0.0 <= volume <= 1.0)
返回值:无返回值,会调整附着物的音量
注意事项
‎此函数使脚本睡眠 0.1 秒。
示例
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");
    }
}
相关函数
相关事件