Pete Hayman
Pete Hayman
> Do you think this branch is in a state where I could open a PR? I think opening a pr would be a great next step, it will provide...
I'm a bit on the fence about this, traditional planners feel in a grey area between hand-authored techniques like behavior trees, and more modern and flexible techniques like agentic AI....
Thanks for suggesting this! heres my post https://beetmash.com/blog/bevy-turns-four
Ok that makes sense thanks for the explanation
In case anybody's looking for an alternative pattern in the meantime, triggering observers from other observers has a similar effect to system piping. ```rust fn system1(trigger: Trigger, mut commands: Commands){...
I'm getting this with vanilla `wasm-bindgen`, it may not be a trunk issue. Reproducible ```sh cargo init deleteme && cd deleteme cargo build --target wasm32-unknown-unknown wasm-bindgen --out-dir ./target $CARGO_TARGET_DIR/wasm 32-unknown-unknown/debug/deleteme.wasm...
Good question the requests are made in a non-tokio async block, its my understanding that bevy has some custom async implementation. The first implementation used `surf` and `http-cache-surf` wich did...
Sounds good thanks for giving it a look.
For the Bevy use-case Ive [added](https://github.com/bevyengine/bevy/pull/16366/commits/b46a4103d3c95f9600522fa80b29915f39c008d5) a very simple cache that never invalidates, its better than nothing but id still love to work out how to integrate `http-cache`.
fantastic there are a few competing prs currently open for the bevy use-case, once that settles I'll have something to base a `http-cache` branch on, looking forward to removing my...