DgsCreateObjectPreviewHandle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
<span style="color:#FF0000;text-shadow:black 0.1em 0.1em 0.6em;">>>>Warning: This feature requires resource '''Object Preview''' with 1 line '''modification'''<<<</span>
<span style="color:#FF0000;text-shadow:black 0.1em 0.1em 0.6em;">>>>Warning: This feature requires resource '''Object Preview''' with 1 line '''modification'''<<<</span>


Download [[Object Preview|link=https://community.multitheftauto.com/index.php?p=resources&s=details&id=11836]]
Download [[https://community.multitheftauto.com/index.php?p=resources&s=details&id=11836|Object Preview]]


You need to insert this line into '''line 340''' in ''''c_main.lua''' of Object Preview:
You need to insert this line into '''line 340''' in ''''c_main.lua''' of Object Preview:

Revision as of 18:56, 27 January 2020

>>>Warning: This feature requires resource Object Preview with 1 line modification<<<

Download [Preview]

You need to insert this line into line 340 in 'c_main.lua of Object Preview:

loadstring(exports.dgs:dgsConfigureObjectPreview())()

This function creates a object preview handle for DGS.

Syntax

element dgsCreateObjectPreviewHandle( element theElementToShow, float rotX, float rotY, float rotZ )
Example Rounded Rectangle

Required Arguments

  • theElementToShow: A vehicle/ped/object element that can be demonstrated in object preview.
  • rotX: A float of the rotation X of the element.
  • rotY: A float of the rotation Y of the element.
  • rotZ: A float of the rotation Z of the element.

Returns

Returns a dgs-dxobjectpreviewhandleelement (dgs plugin)/ SOVElement (element Type) that works with the exported functions of object preview if succeed, false otherwise.

Example

DGS = exports.dgs --get exported functions from dgs

DGS:dgsLocateObjectPreviewResource("object_preview")  -- Locate resource object preview ( Ensure that object preview is running)
wind = DGS:dgsCreateWindow(400,300,300,320,"Example Object Preview",false)  -- Create a window
veh = createVehicle(411,0,0,3)  -- Create a vehicle
objPrev = DGS:dgsCreateObjectPreviewHandle(veh,0,0,0)  -- Create object preview handle
image = DGS:dgsCreateImage(0,0,300,300,_,false,wind)  -- Create an image
DGS:dgsAttachObjectPreviewToImage(objPrev,image)  -- Apply
setTimer(function()
	exports.object_preview:setRotation(objPrev,0,0,getTickCount()/100%360) -- Rotate it
end,50,0)

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