“LlAdjustSoundVolume”的版本间的差异

来自人工智能助力教育知识百科
跳转至: 导航搜索
Qmf讨论 | 贡献
第4行: 第4行:
 
{{函数详情
 
{{函数详情
 
|函数名=Function: llAdjustSoundVolume( float volume );
 
|函数名=Function: llAdjustSoundVolume( float volume );
|参数= 参数:• float
+
|参数= 参数:float volume – between 0.0 (silent) and 1.0 (loud) (0.0 <= volume <= 1.0)
volume  
 
–  
 
between 0.0 (silent) and 1.0 (loud) (0.0 <= volume <= 1.0)
 
 
|返回值= 返回值:Adjusts volume of attached sound.
 
|返回值= 返回值:Adjusts volume of attached sound.
  

2020年4月13日 (一) 08:37的版本

Template:Needs Translation/


函数名
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");
    }
}
相关函数
相关事件