CreateWebUI

From Onset Developer Wiki
Revision as of 09:21, 29 September 2019 by JanHolger (talk | contribs)
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

CreateRemoteWebUI
CreateWebUI3D
CreateRemoteWebUI3D
DestroyWebUI