Is there anything out the box that is useful for resolution scaling on different display resolutions? Working on a client project targeting 4k but we don’t have AMD FSR or Nvidia DLSS on the web from what I can see. Do you guys use anything to limit resolution or upscale the view?
The resolution is defined by the domElement width and height where the needle-engine component is in. You could call this.context.renderer.setSize(width, height) to change that programmatically (this.context.domWidth gives you the current size)
I guess I would read the screen resolution in code and set it appropriately if the resolution is above 1920x1080 I could half the scale factor or similar
@marwie1 there’s also renderer.setPixelRatio(window.devicePixelRatio * scaleFactor);
in three which is important to get Retina rendering and such right, we could expose that as well I guess
This seems to be affected by windows 11 window scaling e.g. 250% at 4k res is close to 125% at 1920x1080 resolution with this value. Should I use another way to read screen size instead?
Using this function I can get the actual screen dimensions! Would be very useful to have some callback for it maybe. As if I used the other callbacks I listed above, I wouldn’t know the real resolution of the screen the content was running on (on a 4k laptop the build is very laggy vs 1920 x 1080)