Can Unity draw points/filled circles?

Hello there, this question is really killing me slowly.

Basically I am searching for a solution on how to draw small points with Unity. I watched a video for Godot where the guy in the video simply calls the function “draw_circle” and that’s it.

I have done a lot of research but couldn’t find any solution for Unity so far. What is especially killing me is that apparently someone in the comments applied the video to Unity, but didn’t explain it.

I basically want to achieve the exact same, but it seems like it’s not possible to draw circles with Unity - or is it?
Can anyone help me with this? That would really relief my headaches about this topic.

Have a great day and thank your for reading!

you can draw by setting pixels,

or using gl

or by creating meshes

or blitting,

or using line renderer

there’s also ready made plugins to help drawing more complex objects and lines/splines:

(and more in store)

*but could also create similar hair effect with particle system (and using spawn by distance value)

Thank you, these ressources already helped a bit!

I just don’t understand how to implement it the way I would like it to be. I don’t find the right approach codewise, because drawing filled circles seems to be a little more difficult than expected.

I’m sorry for asking so directly, but would it be possible to help me with an approach codewise?

normally in unity you don’t really draw pixels directly like that (its slow),
in that example it seems to use some kind of godot canvas texture or buffer to draw into…

anyways, to test pixel drawing,that Texture2D.SetPixel page has example to fill texture with single color,
you could modify it so that it draws circle into that texture.
there is some circle algorithm here:
http://answers.unity.com/answers/591240/view.html