Dgs3DInterfaceSetAttachedOffsets: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:


===Required Arguments===  
===Required Arguments===  
*'''dgsElement:''' The DGS 3D interface of which you wish to get the attachment state.
*'''dgsElement:''' The DGS 3D interface of which you wish to set the attached offset.


===Optional Arguments===
===Optional Arguments===

Revision as of 15:24, 28 September 2019

This function sets the attached offsets of the attached dgs 3d interface.

Syntax

bool dgs3DInterfaceSetAttachedOffsets( element dgsElement [, float offX = offX, float offY = offY, float offZ = offZ, float offFaceX = offFaceX, float offFaceY = offFaceY, float offFaceZ = offFaceZ ] )

Required Arguments

  • dgsElement: The DGS 3D interface of which you wish to set the attached offset.

Optional Arguments

  • offX: A float of the offset of the 3D x coordinate.
  • offY: A float of the offset of the 3D y coordinate.
  • offZ: A float of the offset of the 3D z coordinate.
  • offFaceX: A float of the 3D x direction that the DGS 3D Interface faces to relative to attached element.
  • offFaceY: A float of the 3D Y direction that the DGS 3D Interface faces to relative to attached element.
  • offFaceZ: A float of the 3D Z direction that the DGS 3D Interface faces to relative to attached element.

Returns

Returns true if successfully, 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:dgs3DInterfaceSetAttachedOffsets(material,0,0,10)
	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