Dgs3DGetDimension: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
This function gets the dimension (-1~65535) of the DGS 3D Interface.
This function gets the dimension (-1~65535) of the DGS 3D Element.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
int dgs3DInterfaceGetDimension( element interface3D )
int dgs3DGetDimension( element element3D )
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===  
===Required Arguments===  
*'''interface3D:''' The DGS 3D Interface element.( Dimension -1 means 3d interface is visible in any dimension )
*'''element3D :''' The DGS 3D Element.( Dimension -1 means 3d interface is visible in any dimension )


===Returns===
===Returns===
Line 21: Line 21:
edit = DGS:dgsCreateEdit(0,0,200,50,"DGS 3D Interface Edit",false,material)
edit = DGS:dgsCreateEdit(0,0,200,50,"DGS 3D Interface Edit",false,material)
memo = DGS:dgsCreateMemo(0,60,200,90,"DGS 3D Interface Memo",false,material)
memo = DGS:dgsCreateMemo(0,60,200,90,"DGS 3D Interface Memo",false,material)
outputChatBox(DGS:dgs3DInterfaceGetDimension(material)) --Default is -1
outputChatBox(DGS:dgs3DGetDimension(material)) --Default is -1
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{DGSFUNCTIONS}}
{{DGSFUNCTIONS}}

Revision as of 10:45, 7 February 2022

This function gets the dimension (-1~65535) of the DGS 3D Element.

Syntax

int dgs3DGetDimension( element element3D )

Required Arguments

  • element3D : The DGS 3D Element.( Dimension -1 means 3d interface is visible in any dimension )

Returns

Returns an int if succeed, false otherwise.

Example

DGS = exports.dgs

material = DGS:dgsCreate3DInterface(0,0,3,2,2,400,400,tocolor(255,255,255,255),0,1,0)
edit = DGS:dgsCreateEdit(0,0,200,50,"DGS 3D Interface Edit",false,material)
memo = DGS:dgsCreateMemo(0,60,200,90,"DGS 3D Interface Memo",false,material)
outputChatBox(DGS:dgs3DGetDimension(material)) --Default is -1

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