Joonas

Results 50 comments of Joonas

To prevent single click registering multiple times there's bunch of conditions in the code that prevent clicking in some situations. If you wanna take a look yourself I'd start from...

Are you on the x86-64/Chromium branch? As far as I know one major reason why that's still a branch and not the main garrysmod is precisely handling the keyboard events....

This also depends on #49

This somewhat depends on #49

How would a user create Svelte components to pass as slots? Since creating such a component requires a `target: DOMElement`, the component will either need an arbitrary `document.createElement("div")` wrapper or...

I [released a library](https://github.com/wyozi/pg-searchable) based on pg_search supporting websearch queries. If your search usecase is simple enough, it might be a possible option.

Ideally, I'd be very happy with something like ```ts const ws = fastify.injectWebSocket('/my/ws/path') ws.send('hello world') // just a normal WS instance ``` without having to touch the original plugin options...

I looked into this a bit but stopped once it started feeling like stacking hacks on top of hacks. I got to the point where it kind of manages to...

So does this mean that uploading data to cubemap currently requires directly using opengl?

Creating a new texture2d with image data is as simple as `Texture2d::new(display, image)`, but there does not seem to be a similar method to easily upload cubemap face data. I...