Brian Schwind

Results 152 comments of Brian Schwind

@alice-i-cecile I'm trying to run a set of systems only when the game is in a certain state, and with a fixed timestep. First I tried this: ```rust app.add_systems( (...

@st0rmbtw nice! I changed `*state` to `state.0` and it worked perfectly.

Hi @flxo Sorry for the long time radio silence. I still think this is good work, but I don't have enough bandwidth to review this in any sort of timely...

I realized I originally tested this on `examples/capture/src/main.rs`, but that is now an empty `main()` function. I guess I can try re-adding the code, but I'm not sure if there's...

Makes sense! I'll get to testing it a bit later then once I put together a little program that uses it.

Hi @morajabi, thanks for raising this! > Are you open to a PR for this? Definitely! I also have an M1 Mac and Intel Mac so I can verify the...

Thanks for the PR! If you could add build/test instructions, I can run this on the machines I have: * Intel Macbook Pro 2014 - Big Sur 11.6.2 * M1...

Thanks for the example, @morajabi So just to be clear, to test this properly I should build `wap-example` on an _M1 Machine_ with `npm tauri build --target x86_64-apple-darwin`, and then...

Hmmm, this is a bit mysterious. With no modifications to your example repo, I was able to build with: ``` yarn tauri build --target x86_64-apple-darwin ``` (various invocations of `npm`...

So I fixed the code to use at least one capture channel instead of `0` (which did indeed cause a panic), but I'm back to the point where I can...