Tyler Wolf Leonhardt

Results 9 comments of Tyler Wolf Leonhardt

We have some blog posts but they mostly introduce Circuits to our pretty young player base: * Initial Introduction: https://blog.recroom.com/posts/2020/5/21/introducing-circuits-v2 * First How-To: https://blog.recroom.com/posts/2020/8/3/how-2-circuits-2 We try to make general tools...

Also, FWIW: Circuits V2 is still in public beta (you have to toggle a flag in-game) but we plan to release fully in the next few months. Our players have...

Yep, I can check master. I forget to add this but FWIW, this is the winit PR that fixes the issue: https://github.com/rust-windowing/winit/pull/1461

My current thinking is that `Symbol` should not implement `Deref` at all unless it can `Deref` into an `Fn` rather than an `fn`.It should implement `std::ops::Fn` and also provide a...

I've come to the conclusion that `Symbol`s should not implement `Deref` for two reasons: 1. It becomes too easy for a `Deref` coercion to cause confusing behavior. I already described...

Yeah, I looked at it yesterday. I think that gradlew just needs to be updated but didn’t test out the update before signing off. > On Sep 30, 2018, at...

This is currently impossible. If a library exposes some mutable data, `mut foo: usize` for instance, it is impossible to modify foo outside of the library without a transmute. I...

Hey Jack, I got your message. I will be away for a 2 weeks so I may not have time to look at this for awhile. Additionally, I do not...