DgsGradientGetColorOverwritten: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} This function sets whether the color of gradient will overwrite the color of dx functions. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGradientGetColorOverwritten( element gradient, bool isOverwritten ) </syntaxhighlight> ===Required Arguments=== *'''gradient:''' A dgs gradient element. *'''isOverwritten:''' A bool of the the overwritten state of the gradient (Set to ''false'' to use dx draw's color, set to ''true'' to force shader...")
 
No edit summary
 
Line 2: Line 2:
{{Client function}}
{{Client function}}


This function sets whether the color of gradient will overwrite the color of dx functions.
This function gets whether the color of gradient will overwrite the color of dx functions.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool dgsGradientGetColorOverwritten( element gradient, bool isOverwritten )
bool dgsGradientGetColorOverwritten( element gradient )
</syntaxhighlight>  
</syntaxhighlight>  


===Required Arguments===
===Required Arguments===
*'''gradient:''' A dgs gradient element.
*'''gradient:''' A dgs gradient element.
*'''isOverwritten:''' A bool of the the overwritten state of the gradient (Set to ''false'' to use dx draw's color, set to ''true'' to force shader's color to override dx darw's color).


===Returns===
===Returns===
Returns ''true'' if successful, ''false'' otherwise.
Returns ''true'' if the gradient was set to overwritten, ''false'' otherwise.


==Example==  
==Example==  
Line 21: Line 20:


-- Create A Gradient Plugin
-- Create A Gradient Plugin
gradient = DGS:dgsCreateGradient(tocolor(240,10,10,255),tocolor(100,10,10,255),-90)
gradient = DGS:dgsCreateGradient(tocolor(255,255,255,255),tocolor(0,0,0,255),0)


-- Create An Image
-- Create An Image
image= DGS:dgsCreateImage( 0.7, 0.1, 0.2, 0.1, gradient, true )
image= DGS:dgsCreateImage( 0.7, 0.1, 0.2, 0.1, gradient, true, _, tocolor(255,0,0,255) )


-- Tell gradient that don't overwrite the color from the button
setTimer(function()
DGS:dgsGradientSetColorOverwritten(gradient,false)
DGS:dgsGradientSetColorOverwritten(gradient,not DGS:dgsGradientGetColorOverwritten(gradient))
print(DGS:dgsGradientGetColorOverwritten(gradient))
end,100,0)
</syntaxhighlight>
</syntaxhighlight>


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

Latest revision as of 04:32, 21 November 2021

This function gets whether the color of gradient will overwrite the color of dx functions.

Syntax

bool dgsGradientGetColorOverwritten( element gradient )

Required Arguments

  • gradient: A dgs gradient element.

Returns

Returns true if the gradient was set to overwritten, false otherwise.

Example

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

-- Create A Gradient Plugin
gradient = DGS:dgsCreateGradient(tocolor(255,255,255,255),tocolor(0,0,0,255),0)

-- Create An Image
image= DGS:dgsCreateImage( 0.7, 0.1, 0.2, 0.1, gradient, true, _, tocolor(255,0,0,255) )

setTimer(function()
	DGS:dgsGradientSetColorOverwritten(gradient,not DGS:dgsGradientGetColorOverwritten(gradient))
	print(DGS:dgsGradientGetColorOverwritten(gradient))
end,100,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