CreateWebUI: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 22: Line 22:


{{RelatedFunctions}}
{{RelatedFunctions}}
[[CreateRemoteWebUI]]<br>
{{WebFunctions}}
[[CreateWebUI3D]]<br>
[[CreateRemoteWebUI3D]]<br>
[[DestroyWebUI]]

Revision as of 14:27, 14 December 2019

CreateWebUI

Type: Function
Context: Client
Introduced: v1.0

Description

Creates a new WebUI

Syntax

CreateWebUI(x, y, width, height [, zOrder, frameRate])

Parameters

  • x
    screen pixel x
  • y
    screen pixel y
  • width
    pixel width
  • height
    pixel height
  • zOrder (optional)
    order in which the webui's are rendered
  • frameRate (optional)
    rendering rate (default: 16)

Return Value

  • web (number)

Example

local width, height = GetScreenSize()
local web = CreateWebUI(0, 0, width, height, 0, 16)

See also