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 'intern/cycles/render/nodes.h')
-rw-r--r--intern/cycles/render/nodes.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/intern/cycles/render/nodes.h b/intern/cycles/render/nodes.h
index cede4205a6a..a145056f5cc 100644
--- a/intern/cycles/render/nodes.h
+++ b/intern/cycles/render/nodes.h
@@ -184,16 +184,12 @@ public:
float turbidity;
float ground_albedo;
- ustring type;
- static ShaderEnum type_enum;
-
virtual bool equals(const ShaderNode *other) {
const SkyTextureNode *sky_node = (const SkyTextureNode*)other;
return TextureNode::equals(other) &&
sun_direction == sky_node->sun_direction &&
turbidity == sky_node->turbidity &&
- ground_albedo == sky_node->ground_albedo &&
- type == sky_node->type;
+ ground_albedo == sky_node->ground_albedo;
}
};