Gustav Louw

Results 85 comments of Gustav Louw

I've merged to master. so I hope you enjoy. I'm using it daily and am very pleased I finally got around to it. Makes a world of a difference

Does this example work for you? https://stackoverflow.com/questions/34425799/use-root-x11-window-as-the-main-sdl2-window It should just paint the screen one solid color.

This looks to be a similar error: https://stackoverflow.com/questions/30185781/sdl-createwindowfrom-with-qt-widget-under-mac-os Maybe the problem lies with how the window is being created. Since this is OSX specific I am not of much help

My bad, I removed the train folder this morning. I've updated the readme with 'castle' in place of the train folder, though you can pick any one of the scenes...

Some window managers sadly take control over the root X11 window already. We know Picom already affects paperview. May you be running Picom?

As for everyone trying to get paperview working with a desktop environment, you're likely out of luck. A basic X11 setup is gonna be your best bet. Something like Arch...

I had a look, but not much luck. Seems like the background is always visible according to SDL2

Picom is also another manager that interferes with paperview. As for the root window: ``` static Video Setup(void) { Video self; self.x11d = XOpenDisplay(NULL); const Window x11w = RootWindow(self.x11d, DefaultScreen(self.x11d));...

I have been putting projectiles off for a while. I never really liked 3D math, but I imagine there is a clean way to map a Cartesian plane with a...

Interesting point about the angles. Also, your acceleration math looks right. The part I can't wrap my head around is projecting Z-height to a 2D isometric projection which is why...