Update Export

This commit is contained in:
2026-08-27 15:14:57 -07:00
parent 542773bd79
commit 7319040624
9 changed files with 175 additions and 40 deletions

View File

@ -4,6 +4,7 @@ import bpy
from bpy.types import Material
from bpy.types import Object
import lnx.assets as assets
import lnx.log as log
import lnx.material.cycles as cycles
import lnx.material.make_shader as make_shader
@ -14,6 +15,7 @@ import lnx.node_utils
import lnx.utils
if lnx.is_reload(__name__):
assets = lnx.reload_module(assets)
log = lnx.reload_module(log)
cycles = lnx.reload_module(cycles)
make_shader = lnx.reload_module(make_shader)