From 9ef9c72e5ac71e0877bad9552f18bd0e9e3885ea Mon Sep 17 00:00:00 2001 From: Ben Deutsch Date: Fri, 4 Aug 2017 05:58:10 +0200 Subject: Remove cloud_height setting With the cloud API, the cloud_height setting has become obsolete and replaceable by a mod. It, and supporting code, can be removed. --- src/guiEngine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/guiEngine.cpp') diff --git a/src/guiEngine.cpp b/src/guiEngine.cpp index 65ef1605a..d8d8d3b11 100644 --- a/src/guiEngine.cpp +++ b/src/guiEngine.cpp @@ -313,7 +313,8 @@ GUIEngine::~GUIEngine() /******************************************************************************/ void GUIEngine::cloudInit() { - m_cloud.clouds = new Clouds(m_smgr, -1, rand(), 100); + m_cloud.clouds = new Clouds(m_smgr, -1, rand()); + m_cloud.clouds->setHeight(100.0f); m_cloud.clouds->update(v3f(0, 0, 0), video::SColor(255,200,200,255)); m_cloud.camera = m_smgr->addCameraSceneNode(0, -- cgit v1.2.3