From: <sv...@ww...> - 2004-07-02 18:06:28
|
Author: delta Date: 2004-07-02 11:06:22 -0700 (Fri, 02 Jul 2004) New Revision: 1133 Modified: trunk/CSP/CSPSim/Include/ObjectModel.h Log: Added m_Lighting bool attribute with default value true. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1133 Modified: trunk/CSP/CSPSim/Include/ObjectModel.h =================================================================== --- trunk/CSP/CSPSim/Include/ObjectModel.h 2004-07-02 18:04:50 UTC (rev 1132) +++ trunk/CSP/CSPSim/Include/ObjectModel.h 2004-07-02 18:06:22 UTC (rev 1133) @@ -83,6 +83,7 @@ SIMDATA_XML("elevation_correction", ObjectModel::m_ElevationCorrection, false) SIMDATA_XML("polygon_offset", ObjectModel::m_PolygonOffset, false) SIMDATA_XML("cull_face", ObjectModel::m_CullFace, false) + SIMDATA_XML("lighting", ObjectModel::m_Lighting, false) SIMDATA_XML("landing_gear", ObjectModel::m_LandingGear, false) SIMDATA_XML("animations", ObjectModel::m_Animations, false) END_SIMDATA_XML_INTERFACE @@ -122,6 +123,7 @@ bool m_ElevationCorrection; float m_PolygonOffset; int m_CullFace; + bool m_Lighting; ContactList m_Contacts; std::vector<simdata::Vector3> m_LandingGear; simdata::Link<Animation>::vector m_Animations; |