16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 13:39:18 +02:00

files missing from previous commit

This commit is contained in:
tmj-fstate
2018-06-15 18:56:50 +02:00
parent e54468f831
commit ef5811e6c0
2 changed files with 18 additions and 10 deletions

View File

@@ -163,14 +163,14 @@ public:
// utility methods
TSubModel const *
Pick_Control() const { return m_pickcontrolitem; }
editor::basic_node const *
scene::basic_node const *
Pick_Node() const { return m_picksceneryitem; }
// maintenance methods
void
Update( double const Deltatime );
TSubModel const *
Update_Pick_Control();
editor::basic_node const *
scene::basic_node const *
Update_Pick_Node();
// debug methods
std::string const &
@@ -320,7 +320,9 @@ private:
texture_manager m_textures;
opengl_light m_sunlight;
opengllight_array m_lights;
/*
float m_sunandviewangle; // cached dot product of sunlight and camera vectors
*/
gfx::geometry_handle m_billboardgeometry { 0, 0 };
texture_handle m_glaretexture { -1 };
texture_handle m_suntexture { -1 };
@@ -386,8 +388,8 @@ private:
renderpass_config m_cabshadowpass; // parameters of most recent cab shadowmap pass
std::vector<TSubModel const *> m_pickcontrolsitems;
TSubModel const *m_pickcontrolitem { nullptr };
std::vector<editor::basic_node const *> m_picksceneryitems;
editor::basic_node const *m_picksceneryitem { nullptr };
std::vector<scene::basic_node const *> m_picksceneryitems;
scene::basic_node const *m_picksceneryitem { nullptr };
#ifdef EU07_USE_DEBUG_CAMERA
renderpass_config m_worldcamera; // debug item
#endif