You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers. No questions about C++ programming or topics which are answered in the tutorials!
Can irrlicht draw a filled polygon? I know It can do a rectangle, but I can't find anything else. If not, does anyone know how I'd go about doing it myself? I know how to draw shapes and work with vertices in 3d space, but not how to fill them. I just need to fill it with a single alpha blended color (SColor).
Okay, I figured out I can use drawIndexedTriangleList to actually draw the triangles, and set material type to EMT_TRANSPARENT_ALPHA_CHANNEL for alpha blending.