PlaySound3D: Difference between revisions
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
|  (New page: __NOTOC__  {{Server client function}} Creates an sound in the GTA world.  ==Syntax==  <syntaxhighlight lang="lua">bool playSound3D ( string sound, float x, float y, float z, [ bool looped ] )</syntaxhighlight>   ==...) | No edit summary | ||
| Line 1: | Line 1: | ||
| __NOTOC__   | __NOTOC__   | ||
| {{ | {{Client function}} | ||
| Creates an sound in the GTA world. | Creates an sound in the GTA world. | ||
Revision as of 18:51, 26 December 2008
Creates an sound in the GTA world.
Syntax
bool playSound3D ( string sound, float x, float y, float z, [ bool looped ] )
Required Arguments
- sound: Name of the sound you want to play.
- x: A floating point number representing the X coordinate on the map.
- y: A floating point number representing the Y coordinate on the map.
- z: A floating point number representing the Z coordinate on the map.
Optional Arguments
NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.
- looped: True if looped, False otherwise.
Returns
Returns true if the sound was successfully played, false otherwise.
Example
TODO
Click to collapse [-]
Client--TODO
See Also