Fix import order bug in materials_to_blend that invalidated script reloading

This commit is contained in:
William Herald Snyder 2022-10-02 13:29:02 -04:00
parent 9981b64d60
commit 6e05bba9e5
1 changed files with 4 additions and 3 deletions

View File

@ -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: