|
|
| Line 1: |
Line 1: |
| − | ==setVolume==
| + | #REDIRECT [[Global Command: setVolume]] |
| − | | |
| − | <div class="command-min-version-info">Available since: <span class="command-min-version">v3.0</span></div>
| |
| − | | |
| − | <div class="command-doc">Sets the general volume for background music, sound or speech output.</div>
| |
| − | | |
| − | Lua Syntax:
| |
| − | <pre class="command-syntax">setVolume(type, volume)</pre>
| |
| − | ===Arguments===
| |
| − | ====type====
| |
| − | :'''int''' - The type of volume to set: eMusicVolume (0), eSoundVolume (1), eSpeechVolume (2), eMovieVolume (3) or eGlobalVolume (4).
| |
| − | ====volume====
| |
| − | :'''int''' - New value for volume. Must be between 0 and 100.
| |
| − | ===Flags===
| |
| − | ===Return Values===
| |
| − | None.
| |
| − | ===Examples===
| |
| − | Example 1: set speech volume to 50%
| |
| − | <syntaxhighlight>
| |
| − | setVolume(eSpeechVolume, 50) | |
| − | </syntaxhighlight>
| |