Skip to content

Commit f7feb29

Browse files
committed
2_6_0
Updated to lastest Blender Beta and added UE nodes
1 parent 211372b commit f7feb29

4 files changed

Lines changed: 924 additions & 850 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Provides a material panel that creates Metallic/Roughness or Specular/Gloss Node
1616
- Use Mesh Name for texture matching
1717
- Use Material Name for texture matching
1818
- Auto Detect Nodes from textures.
19+
- Creates nodes for Unreal Engine Textures. * (On detection of OcclusionRoughnessMetallic texture)
1920

2021
# Roadmap
2122

@@ -33,7 +34,7 @@ Prior to blender_addon_pbr 2.0.0
3334

3435
# Installation
3536

36-
Download either the tar.gz or zip from [https://github.com/Digiography/blender_addon_pbr/releases/latest](https://github.com/Digiography/blender_addon_pbr/releases/latest)
37+
Download either the tar.gz or zip from [https://github.com/DigiKrafting/blender_addon_pbr/releases/latest](https://github.com/DigiKrafting/blender_addon_pbr/releases/latest)
3738

3839
Installing an Addon in Blender
3940

__init__.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@
1717
# ##### END GPL LICENSE BLOCK #####
1818

1919
bl_info = {
20-
"name": "PBR",
20+
"name": "DKS PBR",
2121
"description": "PBR Workflow Tools",
22-
"author": "Digiography.Studio",
23-
"version": (2, 5, 1),
22+
"author": "DigiKrafting.Studio",
23+
"version": (2, 6, 0),
2424
"blender": (2, 80, 0),
2525
"location": "Properties > Material > PBR Material",
26-
"wiki_url": "https://github.com/Digiography/blender_addon_pbr/wiki",
27-
"tracker_url": "https://github.com/Digiography/blender_addon_pbr/issues",
26+
"wiki_url": "https://github.com/DigiKrafting/blender_addon_pbr/wiki",
27+
"tracker_url": "https://github.com/DigiKrafting/blender_addon_pbr/issues",
2828
"category": "Material",
2929
}
3030

3131
# Imports
3232

3333
import bpy
3434
from bpy.utils import register_class, unregister_class
35-
from . import ds_pbr
35+
from . import dks_pbr
3636

3737
# Addon Preferences Panel
3838

39-
class ds_pbr_addon_prefs(bpy.types.AddonPreferences):
39+
class dks_pbr_addon_prefs(bpy.types.AddonPreferences):
4040

4141
bl_idname = __package__
4242

4343
option_ao_node : bpy.props.BoolProperty(
44-
name="Ambient Occlusion",
44+
name="Occlusion Roughness Metallic",
4545
description="Add Ambient Occlusion Map via RGB Mix Node",
4646
default = False
4747
)
@@ -89,19 +89,19 @@ def draw(self, context):
8989
layout.prop(self, 'option_specular')
9090

9191
classes = (
92-
ds_pbr_addon_prefs,
92+
dks_pbr_addon_prefs,
9393
)
9494

9595
def register():
9696

9797
for cls in classes:
9898
register_class(cls)
9999

100-
ds_pbr.register()
100+
dks_pbr.register()
101101

102102
def unregister():
103103

104-
ds_pbr.unregister()
104+
dks_pbr.unregister()
105105

106106
for cls in reversed(classes):
107107
unregister_class(cls)

0 commit comments

Comments
 (0)