HU/dxDrawLine: Difference between revisions
Jump to navigation
Jump to search
(→Példa) |
|||
Line 35: | Line 35: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Ez a példa rajzol néhány kört | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function drawCircle( x,y, radius, color ) | function drawCircle( x,y, radius, color ) |
Revision as of 13:19, 23 October 2018
Ez a function rajzol egy 2D-s vonalat a képernyőre - egy keretre. Ezt a onClientRender segítségével együtt kell használni annak érdekében, hogy folyamatosan jelenjen meg.
Szintaxis
bool dxDrawLine ( int startX, int startY, int endX, int endY, int color [, float width = 1.0, bool postGUI = false ] )
Kötelező paraméterek
- startX: An integer representing the absolute start X position of the line, represented by pixels on the screen.
- startY: An integer representing the absolute start Y position of the line, represented by pixels on the screen.
- endX: An integer representing the absolute end X position of the line, represented by pixels on the screen.
- endY: An integer representing the absolute end Y position of the line, represented by pixels on the screen.
- color: An integer of the hex color, produced using tocolor or 0xAARRGGBB (AA = alpha, RR = red, GG = green, BB = blue).
Tetszőleges paraméterek
Megjegyzés: Amikor tetszőleges paramétereket használ, előfordulhat, hogy az összes paramétert meg kell adnia, mielőtt egyet is használna. További információkért látogassa meg a tetszőleges paraméterek oldalt.
- width: The width/thickness of the line
- postGUI: A bool representing whether the line should be drawn on top of or behind any ingame GUI (rendered by CEGUI).
Visszatérési érték
Visszatérési értéke true, ha a művelet sikeres, egyébként false.
Példa
Ez a példa rajzol egy 'X'-et a képernyőre.
local screenWidth, screenHeight = guiGetScreenSize() local lineColor = tocolor(255, 0, 0) function drawLinesAcrossScreen() dxDrawLine(0, 0, screenWidth, screenHeight, lineColor) dxDrawLine(screenWidth, 0, 0, screenHeight, lineColor) end addEventHandler("onClientRender", root, drawLinesAcrossScreen)
Ez a példa rajzol néhány kört
function drawCircle( x,y, radius, color ) local numPoints = math.floor( math.pow( radius, 0.4 ) * 5 ) -- Calculate number of points to make it look good local step = math.pi * 2 / numPoints local sx,sy for p=0,numPoints do local ex = math.cos ( p * step ) * radius local ey = math.sin ( p * step ) * radius if sx then dxDrawLine( x+sx, y+sy, x+ex, y+ey, color ) end sx,sy = ex,ey end end addEventHandler( "onClientRender", root, function() drawCircle( 350, 350, 10, tocolor(255,0,255) ); drawCircle( 350, 350, 50, tocolor(255,0,255) ); end )
Lásd még
- HU/dxConvertPixels
- HU/dxCreateFont
- HU/dxCreateRenderTarget
- HU/dxCreateScreenSource
- HU/dxCreateShader
- HU/dxCreateTexture
- HU/dxDrawCircle
- HU/dxDrawImage
- HU/dxDrawImageSection
- HU/dxDrawLine
- HU/dxDrawLine3D
- HU/dxDrawMaterialLine3D
- HU/dxDrawMaterialPrimitive
- HU/dxDrawPrimitive
- HU/dxDrawMaterialSectionLine3D
- HU/dxDrawRectangle
- HU/dxDrawText
- HU/dxGetBlendMode
- HU/dxGetFontHeight
- HU/dxGetMaterialSize
- HU/dxGetPixelColor
- HU/dxGetPixelsSize
- HU/dxGetPixelsFormat
- HU/dxGetStatus
- HU/dxGetTextWidth
- HU/dxGetTexturePixels
- HU/dxSetAspectRatioAdjustmentEnabled
- HU/dxSetBlendMode
- HU/dxSetPixelColor
- HU/dxSetRenderTarget
- HU/dxSetShaderValue
- HU/dxSetShaderTessellation
- HU/dxSetShaderTransform
- HU/dxSetTestMode
- HU/dxSetTextureEdge
- HU/dxSetTexturePixels
- HU/dxUpdateScreenSource