LlAdjustSoundVolume/zh-Hant
Jump to navigation
Jump to search
概要
函式: 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>