dxSetPixelColor | Multi Theft Auto: Wiki Skip to content

dxSetPixelColor

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function sets the color of a single pixel for pixels contained in a string. It only works with 'plain' format pixels.

Syntax

dxSetPixelColor ( )

Code Examples

client

This example creates a 64x64 texture with random pixel colors, and draw it on the screen.

addEventHandler ("onClientResourceStart", resourceRoot,
function ()
texture = dxCreateTexture (64, 64)
local pixels = dxGetTexturePixels (texture)
for i=0,63 do
for j=0,63 do
dxSetPixelColor (pixels, j, i, math.random (255), math.random (255), math.random (255), 255)
end;
end;
dxSetTexturePixels (texture, pixels)
end)
addEventHandler ("onClientRender", root,
function ()
dxDrawImage (300, 300, 64, 64, texture)
end)