Open qb-0 opened 4 years ago
I got it finally running with calling EnumWindows
from the win32 api. Anyway I would prefer a native pixel way.
I'm not sure what would be involved in doing this but I'll tag it as a feature request :)
I think #234 implements the requested feature. At least it allows you to make the window fully (or partially) transparent which I think it what you want?
@Sann0 could you take a look at https://github.com/faiface/pixel/pull/234 and see if it resolves your issue?
Not sure if thats something which glfw supports aswell.
You could make a pretty good Bonzi Buddy with that
@Sann0 so check this out.
Try making a window with these settings. You should see the effect you're looking for. This could be animated obviously. I'm going to close this issue because the feature is implemented now. You can follow up if you like.
cfg := pixelgl.WindowConfig{
Title: "Pixel Rocks!",
Bounds: pixel.R(0, 0, 1024, 768),
VSync: true,
TransparentFramebuffer: true,
Undecorated: true,
}
Oh wait...I see what you mean. You can click on things through the window. I'm not sure if that's possible right now. That requires more investigation.
Im trying to create a layered (fully transparent Window) on Windows and I'm facing two issues:
Is there maybe something already build in to draw on a transparent Window?