]> git.lizzy.rs Git - minetest.git/blobdiff - src/clouds.h
Don't include cmake_config_githash.h into files that don't need it
[minetest.git] / src / clouds.h
index a6883a44a2aa6dd5d2cbb245bb495b72cf9b5689..a9e58e0f082d2590ca30ac18e1956f29bb14f560 100644 (file)
@@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "irrlichttypes_extrabloated.h"
 #include <iostream>
+#include "constants.h"
 
 class Clouds : public scene::ISceneNode
 {
@@ -70,6 +71,8 @@ class Clouds : public scene::ISceneNode
        void updateCameraOffset(v3s16 camera_offset)
        {
                m_camera_offset = camera_offset;
+               m_box = core::aabbox3d<f32>(-BS * 1000000, m_cloud_y - BS - BS * camera_offset.Y, -BS * 1000000,
+                       BS * 1000000, m_cloud_y + BS - BS * camera_offset.Y, BS * 1000000);
        }
 
 private: