LlAdjustSoundVolume/zh-Hant
< LlAdjustSoundVolume
Jump to navigation
Jump to search
Revision as of 20:17, 7 May 2011 by Blackcan Babii (talk | contribs) (Created page with "{{LSL_Function/volume|volume}}{{LSL_Function/zh-Hant |func=llAdjustSoundVolume |sort=AdjustSoundVolume |func_id=207|func_sleep=0.1|func_energy=10.0 |p1_type=float|p1_name=volume …")
概要
函式: llAdjustSoundVolume( float volume );注意事項
- 這函式會導致script延遲 0.1 秒。
範例
<lsl> 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"); }
}
</lsl>