diff --git a/data/models/License.txt b/data/models/License.txt index 14fca2b0b..8d0828181 100644 --- a/data/models/License.txt +++ b/data/models/License.txt @@ -1,23 +1,28 @@ * bowling.ac, plunger.ac, cake.ac, bomb.ac, anchor.ac created by MiniBjorn (c) 2008 - released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] + released under Creative Commons Attribution-Share Alike 3.0 + [http://creativecommons.org/licenses/by-sa/3.0/] * bubblegum.ac, nitrotank-big.ac, nitrotank-small.ac, giftbox.ac created by MiniBjorn (c) 2008 - released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] + released under Creative Commons Attribution-Share Alike 3.0 + [http://creativecommons.org/licenses/by-sa/3.0/] * banana.ac created by horace aka thomas oppl (toppl@fh-sbg.ac.at) (c) 2008 - released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] + released under Creative Commons Attribution-Share Alike 3.0 + [http://creativecommons.org/licenses/by-sa/3.0/] * chest* by MiniBjorn (c) 2010 - released under Creative Commons Attribution-Share Alike 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] + released under Creative Commons Attribution-Share Alike 3.0 + [http://creativecommons.org/licenses/by-sa/3.0/] * village - released un CC-BY-SA 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] - tree by Julius Krischan Makowka, released un CC-BY-SA 3.0 + released under CC-BY-SA 3.0 [http://creativecommons.org/licenses/by-sa/3.0/] + oak by Julius Krischan Makowka, released un CC-BY-SA 3.0 mushrooms by pfunked, with modifications by Marianne Gagnon, released under CC-BY-SA 3.0 + pinos by Moser Juan José, with minor modifications by Marianne Gagnon, released under CC-BY-SA 3.0 scene and finishing touches by Marianne Gagnon * shroom_color* textures by Julius Krischan Makowka, released un CC-BY-SA 3.0 diff --git a/data/models/village.b3d b/data/models/village.b3d index d022b359c..8d16541be 100644 Binary files a/data/models/village.b3d and b/data/models/village.b3d differ diff --git a/src/states_screens/grand_prix_over.cpp b/src/states_screens/grand_prix_over.cpp index 80182a6f5..559fe3371 100644 --- a/src/states_screens/grand_prix_over.cpp +++ b/src/states_screens/grand_prix_over.cpp @@ -113,9 +113,11 @@ void GrandPrixOver::init() sceneManager->setAmbientLight(video::SColor(255, 120, 120, 120)); const core::vector3df &sun_pos = core::vector3df( 0, 200, 100.0f ); - m_light = irr_driver->getSceneManager()->addLightSceneNode(NULL, sun_pos, video::SColorf(1.0f,1.0f,1.0f), 10000.0f /* radius */); + m_light = irr_driver->getSceneManager()->addLightSceneNode(NULL, sun_pos, + video::SColorf(1.0f,1.0f,1.0f), + 300.0f /* radius */); m_light->getLightData().DiffuseColor = irr::video::SColorf(1.0f, 1.0f, 1.0f, 1.0f); - m_light->getLightData().SpecularColor = irr::video::SColorf(1.0f, 1.0f, 1.0f, 1.0f); + m_light->getLightData().SpecularColor = irr::video::SColorf(1.0f, 0.0f, 0.0f, 0.0f); } // -------------------------------------------------------------------------------------