<div dir="ltr"><div>If you want a light positioned relative to View's Camera then this is what the OSG provides by default.  You can probably just remove the LightSource from the scene graph and rely upon it's settings.  In include/osg/View you'll find:</div><div><br></div><div>       /** Options for controlling the global lighting used for the view.*/<br>        enum LightingMode<br>        {<br>            NO_LIGHT,<br>            HEADLIGHT,<br>            SKY_LIGHT<br>        };<br><br>        /** Set the global lighting to use for this view.<br>          * Defaults to headlight. */<br>        void setLightingMode(LightingMode lightingMode);<br><br>        /** Get the global lighting used for this view.*/<br>        LightingMode getLightingMode() const { return _lightingMode; }<br><br>        /** Get the global light.*/<br>        void setLight(osg::Light* light) { _light = light; }<br><br>        /** Get the global lighting if assigned.*/<br>        osg::Light* getLight() { return _light.get(); }<br><br>        /** Get the const global lighting if assigned.*/<br>        const osg::Light* getLight() const { return _light.get(); }</div><div><br></div><div>The vsgViewer::View class subclasses from osg::View, and osgViewer::Viewer subclasses from osgViewer::View, so all the above methods are also available via viewer.setLightingMode(..) etc.<br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups "OpenSceneGraph Users" group.<br />
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:osg-users+unsubscribe@googlegroups.com">osg-users+unsubscribe@googlegroups.com</a>.<br />
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/osg-users/CAFN7Y%2BXSZedQWexVk7LOsH92KdK%2BtNTfxvHp6d2RDG9vpJdKew%40mail.gmail.com?utm_medium=email&utm_source=footer">https://groups.google.com/d/msgid/osg-users/CAFN7Y%2BXSZedQWexVk7LOsH92KdK%2BtNTfxvHp6d2RDG9vpJdKew%40mail.gmail.com</a>.<br />