Dogi This is my code for canvas: `local canvas = ui.Canvas(window,140,5,190,190) -- Making the layout canvas.color = 0x000000 canvas:point(95,95,0x000000)` Canvas appears, but the point doesnt, i changed x and y but no result [Login to see the link]
Samir Hi Dogi, It's not a bug, by setting the color to zero you set the alpha channel to zero too, use this for black color : canvas.color = 0x000000FF It should work now
Dogi Samir Hi, it works now, thank you, do you know any online color picker that would let me take colors out it to use in my app? since when i try using [Login to see the link] for example, it appears that the color doesnt match the one i got from that site
Samir You can use this color picker and add FF to the left of the hexadecimal value to use solid colors