Astavie
Astavie
While `wlr_server_decoration.h` has been [obsolete for 3 years now](https://gitlab.freedesktop.org/wlroots/wlroots/-/blame/master/include/wlr/types/wlr_server_decoration.h#L2), it is still a useful protocol since it is the only decoration protocol that GTK supports at the moment. I see...
this is basically just #2056 but synced with the latest serde master closes #745 for implementation details see #2056 ## Example ```rust #[derive(Serialize, Deserialize, Debug)] #[serde(tag = "op")] enum Something...
handy if i want to use the `--disable-gpu` flag
``` expr : expr "(" list ")" %dprec 2 | expr ">" expr %dprec 1 ```` Here is a portion of the grammar I'm making. It does not recognise the...
In `Sveltex.render/2`, you create a `` using `Phoenix.HTML.Tag.tag/2`. That function doesn't add a closing `` at the end, so it screws up the html if you have more than just...
Creating a trimesh static body from a mesh with blend shapes does not take blend shapes into account
**Godot version:** 3.2.2 **OS/device including version:** Linux Mint 20 OpenGL ES 3.0 Renderer: GeForce 940MX/PCIe/SSE2 **Issue description:** When you have a model imported with blend shapes, and you create a...
fixes #1081
**Description** As I understand, Motion Canvas was initially made to export image sequences. This wouldn't support audio by nature, but since then the FFmpeg exporter has been added with optional...
Inspired @aarthificial 's comment here: https://github.com/motion-canvas/motion-canvas/pull/1082#issuecomment-2304560803 **Description** For exporting audio alongside an image sequence **Proposed solution** An audio export would not need to render anything. I assume just passing `[0,...
This allows you to get the postorder of an acyclic graph using `graph.nodes_iter().rev()`