<div dir="ltr"><div><div><div>Hi Renato,<br><br></div>The light point functionality was indeed written a long time ago, over a decade me thinks, so I'm rather rusty on the topic.<br><br></div>Having a near light point appear/disappear at different times to a distant one would be a function of the sector you define for it, so if this is not happening how you'd expect my guess would be a problem in the values of the sectors.  The easiest way to understand what's going on would be to add some debugging code to light point code that tests the sector whether the eye point is within the sector or not and see if the behaviour is what you are expecting. <br><br></div>Robert.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 22 February 2016 at 13:49, Renato Semadeni <span dir="ltr"><<a href="mailto:rsemadeni@flyelite.ch" target="_blank">rsemadeni@flyelite.ch</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I'm looking into an older implementation of osg. I struggling with some lightpoint which have directionsectors defined.<br>
<br>
I have lightpoints which change their appearance due to viewing position of the eyepoint. As you can see below, we are defining some lights in a .osg file, this is loaded by our engine and the lights are displayed.<br>
<br>
<br>
Code:<br>
<br>
Group {<br>
 name "Lights_PAPI"<br>
 nodeMask 0xffffffff<br>
 cullingActive FALSE<br>
 num_children 2<br>
   osgSim::LightPointNode {<br>
   nodeMask 0xffffffff<br>
   cullingActive FALSE<br>
   num_lightpoints 1<br>
   minPixelSize 0<br>
   maxPixelSize 10<br>
   maxVisibleDistance2 20e+010<br>
   pointSprite FALSE<br>
   lightPoint {<br>
      isOn TRUE<br>
      position -21.5745 -336.3172 0.8935<br>
      color 1 0 0 1<br>
      intensity 0.04<br>
      radius 5.5<br>
      blendingMode BLENDED<br>
      osgSim::DirectionalSector {<br>
         direction -0.572689 -0.819772 0<br>
         angles 6.28318 0.13614 6.28318 0<br>
      }<br>
   }<br>
 }<br>
  osgSim::LightPointNode {<br>
   nodeMask 0xffffffff<br>
   cullingActive FALSE<br>
   num_lightpoints 2<br>
   minPixelSize 0<br>
   maxPixelSize 10<br>
   maxVisibleDistance2 20e+010<br>
   pointSprite FALSE<br>
   lightPoint {<br>
      isOn TRUE<br>
      position 44.2707 -379.8886 0.8936<br>
      color 1 0 0 1<br>
      intensity 0.04<br>
      radius 5.5<br>
      blendingMode BLENDED<br>
      osgSim::DirectionalSector {<br>
         direction -0.572689 -0.819772 0<br>
         angles 6.28318 0.13614 6.28318 0<br>
      }<br>
   }<br>
 }<br>
}<br>
<br>
<br>
<br>
<br>
We observe now, that even if the lights are only at different positions, that always the one on closer on the x-axis gets turned off earlier than the other one.<br>
<br>
I was looking for an error in our code, but even in the osgviewer the same behavior is present. Secondly I tried to find an approach to define the directionsector once for both lightpoint. But unfortunately without any success.<br>
<br>
We can't include the light behavior into our engine, without larger effort, therefore we are looking for a solution base on the osg file format.<br>
<br>
I really hoping to find some help!<br>
<br>
Thank you!<br>
<br>
kind regards,<br>
Renato<br>
<br>
------------------<br>
Read this topic online here:<br>
<a href="http://forum.openscenegraph.org/viewtopic.php?p=66383#66383" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=66383#66383</a><br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div><br></div>