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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg <gregzzmail@gmail.com>2017-07-11 15:30:32 +0300
committerGreg <gregzzmail@gmail.com>2017-07-11 15:30:32 +0300
commita85e4c87bac01642c8d64d7196c966445d13c623 (patch)
tree0a2fa446180eda6f1528726bc9b9e7eeb7a60cf3 /node_wrangler.py
parent5de432942210e4b09d16bc9adbb612d0472183c4 (diff)
NW: include "height" and "metallic" file name checks
Diffstat (limited to 'node_wrangler.py')
-rw-r--r--node_wrangler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/node_wrangler.py b/node_wrangler.py
index ac30af1c..5df13dbc 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -18,7 +18,7 @@
bl_info = {
"name": "Node Wrangler",
- "author": "Bartek Skorupa, Greg Zaal, Sebastian Koenig, Christian Brinkmann",
+ "author": "Bartek Skorupa, Greg Zaal, Sebastian Koenig, Christian Brinkmann, Florian Meyer",
"version": (3, 35),
"blender": (2, 79, 0),
"location": "Node Editor Toolbar or Ctrl-Space",
@@ -2631,10 +2631,10 @@ class NWAddPrincipledSetup(Operator, NWBase, ImportHelper):
gloss_abbr = ['gloss', 'glossy', 'glossyness']
rough_abbr = ['roughness', 'rough', 'rgh']
socketnames = [
- ['Displacement', ['displacement', 'disp', 'dsp'], None],
+ ['Displacement', ['displacement', 'disp', 'dsp', 'height'], None],
['Base Color', ['diffuse', 'diff', 'albedo', 'base', 'col', 'color'], None],
['Subsurface Color', ['sss', 'subsurface'], None],
- ['Metallic', ['metalness', 'metal', 'mtl'], None],
+ ['Metallic', ['metallic', 'metalness', 'metal', 'mtl'], None],
['Specular', ['specularity', 'specular', 'spec', 'spc'], None],
['Roughness', rough_abbr + gloss_abbr, None],
['Normal', normal_abbr + bump_abbr, None],