DgsCreateObjectPreviewHandle

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

>>>Warning: This feature requires hardware MRT support ( You can also solve this problem by renewing your graphic card )<<<

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

Download Object_Preview

You need to insert this line into line 447 in 'c_main.lua of Object Preview (Latest version):

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

This function creates a object preview handle for DGS.

Syntax

element dgsCreateObjectPreviewHandle( element theElementToShow, float rotX, float rotY, float rotZ [, bool isSecRT = true] )

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-dxobjectpreviewhandle (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

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips