Lewy Blue
Lewy Blue
[Blender's Frame Node](https://docs.blender.org/manual/en/dev/interface/controls/nodes/frame.html) is very important for grouping and handling large node graphs. Has this feature been considered here yet? 
I'm taking a look through the code now, and it looks very clean and usable. Two things that would make it even more accessible: * seperate demo and engine code....
I've set up a [simple sandbox here](https://codesandbox.io/s/viewport-test-hjov5?file=/src/App.js) - when you click it will toggle the active viewport between two states: 1. Initial: the full canvas, `viewport = [0, 0, canvas...
[Performance Scaling example](https://codesandbox.io/s/performance-scaling-with-two-effectcomposers-6m1in) Using `BlendFunction.SKIP` to disable passes with an offscreen target (which is probably all passes expensive enough to be worth disabling, and in particular SSAO and Bloom) doesn't...
**please complete the following information:** - OS version: Win 10 - Editor: VSCode - Editor version: 1.57.0 - Programming language: N/A - TabNine extension version: 3.4.5 - Engine version (could...
I'm running this piece of code on about 10k JPG and PNG images: ``` js const processedImg = await imagemin([originalPath], { plugins = [ imageminJpegtran(), imageminOptipng({ optimizationLevel: 1, }), ];...
Autocomplete is very inconsistently applied. What happens is that when I start to type a class name, e.g. `h-` then I get the list: `h-0`, `h-1` etc. as expected: ...
Currently, many of the official three.js examples are included as iframes throughout the book. These slow down the page load and upstream changes on the three.js repo may unexpectedly break...
The print style sheet should hide the IDE and enforce the light theme to save pinter ink, then ensure that the layout looks ok in print preview. This should be...
Currently, the IDE doesn't protect against infinite loops. It would be great to add this functionality. There are two steps required here: 1. Research and identify possible solutions (e.g. what...