From b48e6799f151b82d6af6487a851051b88a438007 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sun, 24 Mar 2019 14:48:23 +0100 Subject: Fix missing version patching from lamp/light and subsurface changes. --- source/blender/blenloader/intern/versioning_280.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'source/blender/blenloader') diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c index 6c5eb269c5c..c4775b77eee 100644 --- a/source/blender/blenloader/intern/versioning_280.c +++ b/source/blender/blenloader/intern/versioning_280.c @@ -2931,5 +2931,19 @@ void blo_do_versions_280(FileData *fd, Library *UNUSED(lib), Main *bmain) } } } + + FOREACH_NODETREE_BEGIN(bmain, ntree, id) { + if (ntree->type == NTREE_SHADER) { + for (bNode *node = ntree->nodes.first; node; node = node->next) { + /* Fix missing version patching from earlier changes. */ + if (STREQ(node->idname, "ShaderNodeOutputLamp")) { + STRNCPY(node->idname, "ShaderNodeOutputLight"); + } + if (node->type == SH_NODE_BSDF_PRINCIPLED && node->custom2 == 0) { + node->custom2 = SHD_SUBSURFACE_BURLEY; + } + } + } + } FOREACH_NODETREE_END; } } -- cgit v1.2.3