dev7355608

Results 71 comments of dev7355608

> Are there plans on the Daylight/Darkness color and Global Illumination configuration features in V11? Really loved using those :(. Not sure if those fall under what you mentioned prior....

> Will Vision Limitation be a module or this feature will be discontinued as well? @luque-gh Not discontinued. It's coming. But I haven't had the time yet to get it...

No, but I thought it should work. It's possible to add color textures after the first bind, but removing attachments isn't possible unless the framebuffer is disposed. Either both adding...

There's isn't really any documentation on what kind of `ICanvas` `extract.canvas()` returns. Is that right? I assume it's supposed to be `HTMLCanvasElement` in the main thread and `OffscreenCanvas` in a...

This is how it currently works: ```js extract.pixels(target); // sync extract.pixels(target, frame, false); // sync await extract.pixels(target, frame, true); // async ``` There are other options: 1. Add `pixelsAsync` instead...

#9363, #9356, and #9315 should be merged before I mark this ready-for-review.

Yeah, probably unlikely that these properties are changed, but I thought why not: it can't really hurt to have it.

Before I mark this ready-for-review: Should we change how `detectSamples` works? If the valid samples are `[8, 4]` then with `MSAA_QUALITY.LOW` there's no multisampling. Maybe we should select the minimum...

> Before I mark this ready-for-review: Should we change how `detectSamples` works? If the valid samples are `[8, 4]` then with `MSAA_QUALITY.LOW` there's no multisampling. Maybe we should select the...