object[] is equivalent in functionality to void*[]
TransparentFramebuffer on1.0 for the color won't work, if you want a partially transparent framebuffer make sure to set r, g, and b to 0options.PreferredBitDepth to (8, 8, 8, 8)` (or more if you want, this is just for testing purposes)MOUSE_PASSTHROUGH and sorta force it into the window hint, but I wouldn't recommend doing that at allglfw.WindowHint((WindowHintBool) IntValueOfMousePassthrough, true);window.create, and I don't believe there's any way to give it your own window hints eitherglfwSetWindowAttrib during runtime, so that's one problem solved.Glfw object stored in the GlfwWindow
_window.Native would give you the GLFW window
object[]void*[]TransparentFramebuffer1.0options.PreferredBitDepthglfwWindowHint(GLFW_MOUSE_PASSTHROUGH, GLFW_TRUE);MOUSE_PASSTHROUGHif you really wanted to you could manually replace the glfw files with ones for 3.4 and then find the integer value of MOUSE_PASSTHROUGH and sorta force it into the window hint, but I wouldn't recommend doing that at allglfw.WindowHint((WindowHintBool) IntValueOfMousePassthrough, true);window.createglfwSetWindowAttribGlfwGlfwWindowAdded GLFW_MOUSE_PASSTHROUGH window hint for letting mouse input pass through the window (#1236,#1568)_window.Native glClearColor(0.0f, 0.0f, 0.0f, 0.0f);