hello , i need some help with the 3d functions
dxDrawRectangle3D
local dot = dxCreateTexture(1,1)
local white = tocolor(255,255,255,255)
function dxDrawRectangle3D(x,y,z,w,h,c,r,...)
local lx, ly, lz = x+w, y+h, (z+tonumber(r or 0)) or z
return dxDrawMaterialLine3D(x,y,z, lx, ly, lz, dot, h, c or white, ...)
end
addEventHandler("onClientRender", root,
function()
dxDrawRectangle3D(2414, 1242, 20, 100, 100, tocolor(255, 255, 255, 255))
end
)
the issue is the rectangle doesn't appear
there's no error no debug nothing
and the code is very simple