Fix import order bug in materials_to_blend that invalidated script reloading
This commit is contained in:
parent
9981b64d60
commit
6e05bba9e5
|
@ -2,10 +2,9 @@
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from typing import Dict
|
from typing import Dict
|
||||||
from .msh_material import *
|
|
||||||
from .msh_material_gather import *
|
|
||||||
from .msh_material_properties import *
|
from .msh_material_properties import *
|
||||||
from .msh_material_operators import *
|
from .msh_material import *
|
||||||
|
|
||||||
from .msh_material_utilities import _REVERSE_RENDERTYPES_MAPPING
|
from .msh_material_utilities import _REVERSE_RENDERTYPES_MAPPING
|
||||||
|
|
||||||
|
@ -15,6 +14,8 @@ import os
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def find_texture_path(folder_path : str, name : str) -> str:
|
def find_texture_path(folder_path : str, name : str) -> str:
|
||||||
|
|
||||||
if not folder_path or not name:
|
if not folder_path or not name:
|
||||||
|
|
Loading…
Reference in New Issue