Red Artist

Results 119 comments of Red Artist

@WanderQing forgot about Windows. anyway, try again with the latest commits.

https://github.com/ar37-rs/flowync could be an alternative to pollster.

The main issue with wasm at the moment is building / running examples. both wasm-pack and trunk need the examples to be separate crates. wasm-pack additionally needs a separate "start"...

crates like bevy_mod_scripting or tealr just forward the lua version features. https://github.com/lenscas/tealr/blob/master/Cargo.toml#L27 if all your plugin crates need to use a specific lua version, then, just rely on that feature....

after A LOT of debugging 1. speech-dispatcher has a type mismatch issue with C FFI. which is fixed in a later version, but has one more fn pointer issue which...

rust 1.63 introduces a lint https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq and a lot of structs in egui implement `partial_eq` but not `eq`, so this will touch a lot of files if we want to...

I will try making a PR tonight

making a new pull request. i will learn git, but not today xD

> You can iterate over set flags and their names, as well as get a flag value from its name. These should support cases where you want to serialize/deserialize flags...