Dgs3DInterfaceIsAttached: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function checks whether the dgs 3d interface is attached to an element. ==Syntax== <syntaxhighlight lang="lua"> bool dgs3DInterfaceIsAtta...")
 
No edit summary
 
Line 19: Line 19:


function panelPosition()
function panelPosition()
    dgs3dPanel = DGS:dgsCreate3DInterface(0,0,3,2,2,400,400,tocolor(255,255,255,255),0,1,0) -- Creates a 3d Panel
material = DGS:dgsCreate3DInterface(0,0,4,4,4,600,600,tocolor(255,255,255,255),1,0,0,_,0)
    image = DGS:dgsCreateImage(0,0,1,1,_,true,dgs3dPanel) -- Background for test
DGS:dgs3DInterfaceAttachToElement(material,localPlayer,0,0,1)
 
DGS:dgsSetProperty(material,"maxDistance",1000)
    if dgs3dPanel then -- if Panel exists
DGS:dgsSetProperty(material,"fadeDistance",1000)
        DGS:dgs3DInterfaceSetResolution( dgs3dPanel, 800, 800 ) -- Sets the panel size
local window = DGS:dgsCreateWindow(0,0,600,600,"test",false)
    end
DGS:dgsSetParent(window,material)
local isAttached = DGS:dgs3DInterfaceIsAttached(material)
if isAttached then
outputChatBox("3D Interface is attached")
end
end
end



Latest revision as of 15:17, 28 September 2019

This function checks whether the dgs 3d interface is attached to an element.

Syntax

bool dgs3DInterfaceIsAttached( element dgsElement )

Required Arguments

  • dgsElement: The DGS 3D interface of which you wish to get the attachment state.

Returns

Returns true if it is attached, false otherwise.

Example

DGS = exports.dgs

function panelPosition()
	material = DGS:dgsCreate3DInterface(0,0,4,4,4,600,600,tocolor(255,255,255,255),1,0,0,_,0)
	DGS:dgs3DInterfaceAttachToElement(material,localPlayer,0,0,1)
	DGS:dgsSetProperty(material,"maxDistance",1000)
	DGS:dgsSetProperty(material,"fadeDistance",1000)
	local window = DGS:dgsCreateWindow(0,0,600,600,"test",false)
	DGS:dgsSetParent(window,material)
	local isAttached = DGS:dgs3DInterfaceIsAttached(material)
	if isAttached then
		outputChatBox("3D Interface is attached")
	end
end

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips