Definition
Set3DSoundScriptIntVariable(string 3DSoundName, string variable, int value)
Description
This function sets the value of the Integer variable defined in the script attached to the 3DSoundName 3D sound object to value.
Parameters
3DSoundName
Specifies the name of the 3D sound object.
variable
Specifies the name of the Integer variable defined in the script attached to the 3DSoundName 3D sound.
value
Specifies the Integer value for the variable variable.
Example
--script name is Set3DSoundScriptIntVariable.lua attached a to game object such as water function Init() Set3DSoundScriptIntVariable("sound1", "a", 1) end function Update() end
Assuming that the variable “a” is defined in the script attached to the 3D sound object “sound1”, Set3DSoundScriptIntVariable function sets the “a” variable to 1.
Set3DSoundScriptIntVariable