Talin
Talin
It appears that the problem is because extractCss() is not idempotent. Each time the server gets called to render a page, extractCss() erases the previous styles. This is a problem...
I need this feature as well. I've looked at the code and yes, it would be non-trivial, since all of the various functions that call it would need to be...
What would be ideal is something similar to the interceptor callback in axios.js: the configured callback either returns a promise or a plain value. If it's a promise, then the...
I'd like a way to add an CSS class name to the main dialog element.
I get the following error whenever I define a function that ends with a digit: ``` ╭ fn foo2() -> f32 { 14 │ │ return 1.; │ ╰────────────^ Composable...
OK that all sounds good. I have been looking at the docs for various preference APIs - Java, .Net, Qt. Most of them are fairly opinionated in ways that we...
Detailed requirements doc here: https://hackmd.io/@dreamertalin/rkhljFM7R
I've written my own lib, which has a somewhat different design: https://github.com/viridia/panoply/tree/main/crates/bevy_mod_preferences * Auto-save with timer * Saves to standard OS preferences locations. * "Safe" saving protects against corruption -...
I'm not sure bevy_scene_hook would work for my use case. My world is semi-procedural, for example a "tree" model is instantiated hundreds of times, with algorithmically chosen location and rotation...
A few more thoughts here: There's been some discussion of how this might be done via AssetProcessors, once they evolve a bit more. Unfortunately, I don't know whether this will...