Dgs3DInterfaceSetBlendMode

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

This function allows yout to change the blend mode of dgs 3d interface. Learn More dxSetBlendMode

Syntax

bool dgs3DInterfaceSetBlendMode( element dgsElement, string blendMode )

Required Arguments

  • dgsElement: The DGS 3D interface to set the blend mode.
  • blendMode : The blend mode to use which can be one of:
    • blend: The source textures are alpha blended to the screen/render target. This is the default mode for drawing and gives the results we all know and love.
    • add: The source textures are added to the screen/render target.
    • modulate_add: The source textures are multiplied by the alpha and then added to the screen/render target.
    • overwrite : The source textures are overwritten. This can be useful for clearing render targets.

Returns

Returns true if successful, or false if invalid arguments were passed to the function.

Example

DGS = exports.dgs

material = DGS:dgsCreate3DInterface(0,0,3,2,2,400,400,tocolor(255,255,255,255),0,1,0)
image1 = DGS:dgsCreateImage(0,0,400,400,_,false,material)
edit2 = DGS:dgsCreateEdit(0,100,200,50,"DGS 3D Interface Edit 2",false,material)
setTimer(function()
	DGS:dgs3DInterfaceSetBlendMode( material, "add" ) -- You will find there is something different
end,1000,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

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