Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/yafray/intern/export_Plugin.cpp')
-rw-r--r--source/blender/yafray/intern/export_Plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/yafray/intern/export_Plugin.cpp b/source/blender/yafray/intern/export_Plugin.cpp
index 39514ce259a..1de6920182a 100644
--- a/source/blender/yafray/intern/export_Plugin.cpp
+++ b/source/blender/yafray/intern/export_Plugin.cpp
@@ -241,7 +241,7 @@ bool yafrayPluginRender_t::writeRender()
params["border_ymax"] = yafray::parameter_t(2.f*re->r.border.ymax - 1.f);
}
if (hasworld) {
- World *world = G.scene->world;
+ World *world = re->scene->world;
if (world->mode & WO_MIST) {
// basic fog
float fd = world->mistdist;
@@ -1740,7 +1740,7 @@ void yafrayPluginRender_t::writeCamera()
void yafrayPluginRender_t::writeHemilight()
{
yafray::paramMap_t params;
- World *world = G.scene->world;
+ World *world = re->scene->world;
bool fromAO = false;
if (re->r.GIquality==6){
// use Blender AO params is possible
@@ -1864,7 +1864,7 @@ void yafrayPluginRender_t::writePathlight()
bool yafrayPluginRender_t::writeWorld()
{
- World *world = G.scene->world;
+ World *world = re->scene->world;
if (re->r.GIquality!=0) {
if (re->r.GImethod==1) {
if (world==NULL) cout << "WARNING: need world background for skydome!\n";