Alain Galvan

Results 16 comments of Alain Galvan

Not at the moment. There will be, I just haven't had the time to focus on that platform, I've been focused on Win32/MacOS/iOS for now. There's a lot of folks...

Thanks for letting me know, this should be fixed in https://github.com/alaingalvan/CrossWindow/commit/b72426a295e5a4d164f73ca5835257e3c925ccea .

I did notice in your CMakeLists.txt file that you didn't pass any source variables to `xwin_create_executable`: ```cmake # 👇 So here's your sources: set(src src/main.cpp) add_subdirectory(external/crosswindow) # ❌ But they're...

Oh thanks, ~that looks like an error on our end, I'm working on a patch to fix that and will edit this post when it's done.~ EDIT: So this was...

Hey @fhoenig, currently for Win32 key events are propigated at: [`Win32EventQueue.cpp` Line 349](https://github.com/alaingalvan/CrossWindow/blob/master/src/CrossWindow/Win32/Win32EventQueue.cpp#L349) So should your application need to type out character input you can listen to these events and...

@lborg019, The AST conforms to a certain schema, and will need to be converted to a scene with actors. ```rust let ast = import_from_python("./mypythonfile.py"); for node in ast { match...

So that flag is only available in the canary builds of chromium browsers. Are you using [Chrome Canary](https://www.google.com/chrome/canary/)?

Yes, the origin trial works as well, but only for domains you specify. Here's a [blog post](https://web.dev/gpu/) from the WebGPU developers that details how to sign up for the origin...

Hmm, this is probably because `anime.js` mutates the `style` prop of the HTML element in the DOM. This might not be fixable. :( If anything, send me a CodePen and...

Hey @du5rte, Just opened #11 with some of the changes that are going on with **React Anime 2.0**, unmounting/mounting animations haven't quite been figured out yet though. The primary issue...