|
@@ -1,7 +1,7 @@
|
|
bl_info = {
|
|
bl_info = {
|
|
'name': 'Babylon.js',
|
|
'name': 'Babylon.js',
|
|
'author': 'David Catuhe, Jeff Palmer',
|
|
'author': 'David Catuhe, Jeff Palmer',
|
|
- 'version': (3, 0, 1),
|
|
|
|
|
|
+ 'version': (3, 0, 2),
|
|
'blender': (2, 75, 0),
|
|
'blender': (2, 75, 0),
|
|
'location': 'File > Export > Babylon.js (.babylon)',
|
|
'location': 'File > Export > Babylon.js (.babylon)',
|
|
'description': 'Export Babylon.js scenes (.babylon)',
|
|
'description': 'Export Babylon.js scenes (.babylon)',
|
|
@@ -1642,7 +1642,7 @@ class BakingRecipe:
|
|
|
|
|
|
textures = [mtex for mtex in material.texture_slots if mtex and mtex.texture]
|
|
textures = [mtex for mtex in material.texture_slots if mtex and mtex.texture]
|
|
for mtex in textures:
|
|
for mtex in textures:
|
|
- if mtex.texture.type == 'IMAGE':
|
|
|
|
|
|
+ if mtex.texture.type == 'IMAGE' or mtex.texture.type == 'NONE':
|
|
continue
|
|
continue
|
|
|
|
|
|
self.needsBaking = True
|
|
self.needsBaking = True
|