Idea

Lambert avatar image
1 Like"
Lambert suggested Jason Lightfoot commented

Lighting system/gamma setting in RTX mode

RTX mode looks beautiful, however it also looks very dark and cluttered with shadows.

1669295869929.png

As there is no way to turn off shadows in RTX mode, could you add a daylight lighting system or gamma setting or allow the ambient light to affect RTX mode?

linked to https://answers.flexsim.com/questions/131756/shadows-in-rtx-mode.html

thank you

rtxlight
1669295869929.png (1.5 MiB)
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Comment

Jason Lightfoot avatar image
1 Like"
Jason Lightfoot commented

Here's an example script for the creation of a grid of lights for a view. To run it you should first right click the view background and choose "View->Desginate This View (sv)" and alter any of the commented values to suit your need.

1669301828117.png

It seems the more lights you have, the slower the rendering will be.

  1. treenode view=sv();   //right click the view background and choose set as sv()
  2. Vec3 startloc=Vec3(-10,-10,20);   // the SouthWest most corner of the lighting grid (min x and y)
  3. double xsize=20;      //  grid x size
  4. double ysize=20;      //  grid y size
  5. double brightness=0.01;  // brightness per light
  6. int spacing=2;            // grid spacing
  7. double x0=startloc.x;
  8. double y0=startloc.y;
  9. double z0=startloc.z;
  10. int lightidx=0;
  11. double x;double y;
  12. treenode lights=viewlights(view);
  13. treenode light=lights.first;
  14. while (lights.subnodes.length>1)
  15.     lights.last.destroy();
  16. for (int xidx=0;x0+xidx*spacing<x0+xsize;xidx++) {
  17.     for (int yidx=0;y0+yidx*spacing<y0+ysize;yidx++) {
  18.         lightidx++;
  19.         x=x0+xidx*spacing;
  20.         y=y0+yidx*spacing;
  21.         if (lightidx>1)
  22.             light=createcopy(light,lights);
  23.         light.name="Light Source "+lightidx;
  24.         light.subnodes[1].value=x;
  25.         light.subnodes[2].value=y;
  26.         light.subnodes[3].value=z0;
  27.         light.subnodes[4].value=brightness;
  28.         light.subnodes[5].value=brightness;
  29.         light.subnodes[6].value=brightness;
  30.         light.subnodes[7].value=0;        
  31.         light.subnodes[8].value=0;        
  32.     }
  33. }

Note that with good settings for RTX, the lights may be incorrect for non-RTX viewing - requiring more ambient light to correct which is not ideal. The whole system needs calibrating or an exposure/gamma setting adding.

Also note that if you close the view you lose the light setting since it's not currently stored with the model - is the view window that contains the definitions. Because of this you may/not want to set it as the default view.

artificialDaylight.fsm

· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Your Opinion Counts

Share your great idea, or help out by voting for other people's ideas.