DxGetBlendMode: Difference between revisions

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


==Example==  
==Example==  
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
TODO
addCommandHandler("myBlendMode", function()
    outputChatBox( dxGetBlendMode() )
end)
</syntaxhighlight>
</syntaxhighlight>
</section>


==Requirements==
==Requirements==

Revision as of 20:30, 5 April 2020

Accessories-text-editor.png Script Example Missing Function DxGetBlendMode needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


This function returns the current blend mode for the dxDraw functions. The blend mode is set using dxSetBlendMode

Syntax

string dxGetBlendMode ( )

Returns

Returns the current blend mode, which can be one of:

  • blend
  • add
  • modulate_add
  • overwrite

Example

Click to collapse [-]
Client
addCommandHandler("myBlendMode", function()
    outputChatBox( dxGetBlendMode() )
end)

Requirements

This template will be deleted.

See Also