Erik Simmler
Erik Simmler
``` #[derive(Component, Inspectable, Debug)] pub struct Behavior { actor: Entity, state: BehaviorState, } #[derive(Inspectable, PartialEq, Eq, Debug)] pub enum BehaviorState { Inactive, Running, Succeeded, Failed, } ``` When I try...
```js const [a, b, c = DEFAULT_C] = myArray; ``` Setting a default value when destructuring an array triggers the following compile error: ``` ERROR in ./my/source.js Module build failed:...
I assume this was an older file name or just a typo as I can't find any other references to a `keybindings.json` file. Either way it was confusing for a...
**Connections** Fixes https://github.com/gfx-rs/wgpu/issues/8668 **Description** When we generate a fallback value, it causes the gles backend to set `UNPACK_IMAGE_HEIGHT` to a non-zero value, which causes Firefox to log a warning and...
**Description** I'm writing to a 2D texture with `Queue::write_texture`. In FireFox, when running with the GL backend I get the following error the SECOND time I try to write a...