CreateWebUI3D: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
{{FuncParam|height |The height}} | {{FuncParam|height |The height}} | ||
{{FuncParamOptional|frameRate|The framerate}} | {{FuncParamOptional|frameRate|The framerate}} | ||
{{FuncParamOptional|AudioFalloffDistance|The distance in which the WebUI audio will fade. Default: | {{FuncParamOptional|AudioFalloffDistance|The distance in which the WebUI audio will fade. Default: '''1000.0'''}} | ||
{{FuncReturnValue|web (number)}} | {{FuncReturnValue|web (number)}} |
Latest revision as of 09:32, 14 February 2022
Description
Creates a new WebUI in 3d space. Use DestroyWebUI to destroy it.
Syntax
CreateWebUI3D(x, y, z, rx, ry, rz, width, height [, frameRate, AudioFalloffDistance])
Parameters
- x
The X axis - y
The Y axis - z
The Z axis - rx
The RX axis - ry
The RY axis - rz
The RZ axis - width
The width - height
The height - frameRate (optional)
The framerate - AudioFalloffDistance (optional)
The distance in which the WebUI audio will fade. Default: 1000.0
Return Value
- web (number)
Example
local cinemaUI = CreateWebUI3D(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1360, 720, 60, 2000.0)